summaryrefslogtreecommitdiff
path: root/tests/modules/testmod/TestMod.cpp
blob: e019e301d32d8187cc3a403ee058664d06e5ef66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "TestMod.hpp"

#include <iostream>

using namespace std;

void Derived::hello( )
{
	cout << "hello" << endl;
}

REGISTER_MODULE( "testmod", 0, 0, Base, Derived )