Replaced most std::map's with std::unordered_map's for more scalability.

This commit is contained in:
2013-04-24 18:12:03 -07:00
parent 0c67ffbbd1
commit 9ef3f4590f
33 changed files with 130 additions and 85 deletions

View File

@@ -49,10 +49,10 @@ public:
KRBundle *getBundle(const char *szName);
std::vector<std::string> getBundleNames();
std::map<std::string, KRBundle *> getBundles();
std::unordered_map<std::string, KRBundle *> getBundles();
private:
std::map<std::string, KRBundle *> m_bundles;
std::unordered_map<std::string, KRBundle *> m_bundles;
};
#endif /* defined(KRBUNDLEMANAGER_H) */