summaryrefslogtreecommitdiff
path: root/tests/modules/testmod4/TestMod4.hpp
blob: d4d4d99b6615ceb35fd5bde722f39fa4cd1dae2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __TESTMOD_H
#define __TESTMOD_H

#include "Base.hpp"

#include "ModuleRegistry.hpp"

#include "ModuleLoader.hpp"

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

	private:
		ModuleLoader<Base> *m_loader;
};

DECLARE_MODULE( Base )

#endif