diff options
Diffstat (limited to 'src/Tree.h')
-rw-r--r-- | src/Tree.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -20,12 +20,13 @@ public: void setRoot(const AbstractNode *root); const AbstractNode *root() const { return this->root_node; } - // FIXME: Really return a reference? 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 |