1 // vim: set expandtab tabstop=4 shiftwidth=4:
13 CHIT::CHIT(const string& root, const string& postfix, const string& group):
14 GHIT(root, postfix, group) {
16 cerr << "In CHIT::CHIT(root = '" << root << "', postfix = '" << postfix
17 << "', group = '" << group << "');" << endl;
23 cerr << "In CHIT destructor." << endl;
27 string CHIT::getFileContent(const string& filename) {
28 Hash::iterator c = cache.find(filename);
29 if (c == cache.end()) {
30 cache[filename] = GHIT::getFileContent(filename);
31 return cache[filename];