diff options
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(); |
