/****************************************************************************** * 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 static const char *classes[] = {"StrKey", "SWKey", "SWObject", 0}; SWClass StrKey::classdef(classes); /****************************************************************************** * StrKey Constructor - initializes instance of StrKey * * ENT: ikey - text key (word, city, name, etc.) */ StrKey::StrKey(const char *ikey) : SWKey(ikey) { init(); } void StrKey::init() { myclass = &classdef; } /****************************************************************************** * StrKey Destructor - cleans up instance of StrKey * * ENT: ikey - text key */ StrKey::~StrKey() { }