1 // vim: set expandtab tabstop=4 shiftwidth=4:
5 CHIT::CHIT(string root, string postfix, string group) {
6 GHIT(root, postfix, group);
9 string CHIT::getFileContent(string filename) {
10 Hash::iterator c = cache.find(filename);
11 if (c == cache.end()) {
12 cache[filename] = GHIT::getFileContent(filename);
13 return cache[filename];