diff options
Diffstat (limited to 'src/Tree.h')
-rw-r--r-- | src/Tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -21,10 +21,12 @@ public: const AbstractNode *root() const { return this->root_node; } const string &getString(const AbstractNode &node) const; + const string &getIdString(const AbstractNode &node) const; private: const AbstractNode *root_node; mutable NodeCache nodecache; + mutable NodeCache nodeidcache; }; #endif |