diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-30 06:56:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-30 06:56:13 +0000 |
| commit | 656f2fbecf7f74e497353a4bff902ec16937cfc4 (patch) | |
| tree | b22c1525b46464cf5b0f7651f859998523b40fe6 /src/bindings.hh | |
| parent | 78a85881260eb537d60c05a26c048dc36b1b2089 (diff) | |
make some static functions members of OBBindings
Diffstat (limited to 'src/bindings.hh')
| -rw-r--r-- | src/bindings.hh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bindings.hh b/src/bindings.hh index 70b2326d..4545627a 100644 --- a/src/bindings.hh +++ b/src/bindings.hh @@ -46,8 +46,12 @@ public: typedef std::vector<std::string> StringVect; private: - BindingTree _bindings;// root nodes (these dont have siblings!) + BindingTree _tree;// root node of the tree (this doesn't have siblings!) + int find(BindingTree *search); + bool translate(const std::string &str, Binding &b); + BindingTree *buildtree(const StringVect &keylist, int id); + public: //! Initializes an OBBinding object OBBindings(); |
