1 // vim: set expandtab tabstop=4 shiftwidth=4:
11 CHIT::CHIT(string root, string postfix, string group): GHIT(root, postfix, group) {
13 cerr << "In CHIT::CHIT(root = '" << root << "', postfix = '" << postfix
14 << "', group = '" << group << "');" << endl;
20 cerr << "In CHIT destructor." << endl;
24 string CHIT::getFileContent(string filename) {
25 Hash::iterator c = cache.find(filename);
26 if (c == cache.end()) {
27 cache[filename] = GHIT::getFileContent(filename);
28 return cache[filename];