aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/tests/echomod.cpp
blob: 65e689b2e2244037a98fde21813086f14dca5821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/******************************************************************************
 *  echomod.cpp - code for class 'echomod'- a dummy test text module that just
 *		  echos back the key
 */

#include <echomod.h>


EchoMod::EchoMod() : SWText("echomod", "Echos back key")
{
}


EchoMod::~EchoMod() {
}


EchoMod::operator const char*()
{
	return *key;
}