summaryrefslogtreecommitdiff
path: root/tests/modules/testmod2/TestMod2.hpp
blob: f4886cdc46fd78ce7777356f504d23c35e82babd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __TESTMOD_H
#define __TESTMOD_H

#include "Base.hpp"

#include "ModuleRegistry.hpp"

class Derived : public Base
{
	public:
		Derived( ) { }
		
		virtual ~Derived( ) { }
		
		virtual void hello( );
};

DECLARE_MODULE( Base )

#endif