/****************************************************************************** * StrKey.cpp - code for class 'StrKey'- a standard string key class (used * for modules that index on single strings (eg. cities, * names, words, etc.) */ #include #include #include #include #include /****************************************************************************** * StrKey Constructor - initializes instance of StrKey * * ENT: ikey - text key (word, city, name, etc.) */ StrKey::StrKey(const char *ikey) : SWKey(ikey) { } /****************************************************************************** * StrKey Destructor - cleans up instance of StrKey * * ENT: ikey - text key */ StrKey::~StrKey() { }