DOM Caching

- Implemented DOM caching on name.  May need a 'clear' method later.
This commit is contained in:
Paul Beckingham 2011-06-21 02:02:53 -04:00
parent b49523c06d
commit 5808e2073f
2 changed files with 35 additions and 18 deletions

View file

@ -44,6 +44,9 @@ public:
private:
bool is_primitive (const std::string&);
private:
std::map <std::string, std::string> _cache;
};
#endif