summaryrefslogtreecommitdiff
path: root/tests/modules/testmod2/TestMod2.cpp
blob: 454bf8fbf3e7e5a0bd4882ff324964bf54c815c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "TestMod2.hpp"
#include "Common.hpp"

#include <iostream>

using namespace std;

void Derived::hello( )
{
	Common::instance( ).print( "hello from module" );
}

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