summaryrefslogtreecommitdiff
path: root/tests/modules/testmod4/TestMod4.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modules/testmod4/TestMod4.hpp')
-rwxr-xr-xtests/modules/testmod4/TestMod4.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/modules/testmod4/TestMod4.hpp b/tests/modules/testmod4/TestMod4.hpp
new file mode 100755
index 0000000..d4d4d99
--- /dev/null
+++ b/tests/modules/testmod4/TestMod4.hpp
@@ -0,0 +1,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