/****************************************************************************** * echomod.cpp - code for class 'echomod'- a dummy test text module that just * echos back the key */ #include EchoMod::EchoMod() : SWText("echomod", "Echos back key") { } EchoMod::~EchoMod() { } EchoMod::operator const char*() { return *key; }