1 // vim: set expandtab tabstop=4 shiftwidth=4:
5 GHIT::GHIT(string root, string postfix, string group) {
7 this->group.push(group);
10 string GHIT::getFileName(string blockname) {
11 return string(root + '/' + group.top() + '/' + blockname + postfix);
14 void GHIT::pushGroup(string group = "") {
15 this->group.push(group);
18 string GHIT::popGroup() {
19 string g = group.top();
24 string GHIT::getGroup() {