summaryrefslogtreecommitdiff
path: root/tests/modules/testmod/TestMod.cpp
blob: 0728b87d6f648d12233ff9678b99c5e0db97fecb (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", Base, Derived )