CCDictionary<std::string, CCObject*> *CCFileUtils::dictionaryWithContentsOfFileThreadSafe(const char *pFileName) { CCDictMaker tMaker; return tMaker.dictionaryWithContentsOfFile(pFileName); }
CCDictionary *CCFileUtils::dictionaryWithContentsOfFileThreadSafe(const char *pFileName) { CCDictMaker tMaker; return tMaker.dictionaryWithContentsOfFile(pFileName); }
CCDictionary* CCFileUtils::createCCDictionaryWithContentsOfFile(const std::string& filename) { std::string fullPath = fullPathForFilename(filename.c_str()); CCDictMaker tMaker; return tMaker.dictionaryWithContentsOfFile(fullPath.c_str()); }