-CHIT::CHIT(string root, string postfix, string group) {
- GHIT(root, postfix, group);
+using namespace bife;
+
+#ifdef DEBUG
+#include <iostream>
+using std::cerr;
+using std::endl;
+#endif
+
+CHIT::CHIT(const string& root, const string& postfix, const string& group):
+ GHIT(root, postfix, group) {
+#ifdef DEBUG
+ cerr << "In CHIT::CHIT(root = '" << root << "', postfix = '" << postfix
+ << "', group = '" << group << "');" << endl;
+#endif
+}
+
+CHIT::~CHIT(void) {
+#ifdef DEBUG
+ cerr << "In CHIT destructor." << endl;
+#endif