diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-09 02:47:00 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-09 02:47:00 (GMT) |
commit | acc0a21fe329287dba98428a13c67ad82ec380b1 (patch) | |
tree | 0df8a5f32e79d55483d881a150fb7040c453b6d4 /tests/CSGTextCache.h | |
parent | 0c72c33e6ef92c48aef30fd2d057848bf94bee65 (diff) |
Ported QCache and related code away from Qt
Diffstat (limited to 'tests/CSGTextCache.h')
-rw-r--r-- | tests/CSGTextCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CSGTextCache.h b/tests/CSGTextCache.h index 57a6972..62f26ce 100644 --- a/tests/CSGTextCache.h +++ b/tests/CSGTextCache.h @@ -1,9 +1,9 @@ #ifndef CSGTEXTCACHE_H_ #define CSGTEXTCACHE_H_ -#include "myqhash.h" #include "Tree.h" #include <string> +#include <boost/unordered_map.hpp> using std::string; @@ -20,7 +20,7 @@ public: void clear(); private: - QHash<string, string> cache; + boost::unordered_map<string, string> cache; const Tree &tree; }; |