diff options
Diffstat (limited to 'tests/guy.cpp')
-rw-r--r-- | tests/guy.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/guy.cpp b/tests/guy.cpp deleted file mode 100644 index 6510771..0000000 --- a/tests/guy.cpp +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #include "stdio.h" | ||
2 | #include "plugin.h" | ||
3 | #include "plugger.h" | ||
4 | |||
5 | class Guy : public Plugin | ||
6 | { | ||
7 | public: | ||
8 | Guy() | ||
9 | { | ||
10 | printf("I'm guy!\n"); | ||
11 | } | ||
12 | |||
13 | virtual ~Guy() | ||
14 | { | ||
15 | printf("Guy is dead...\n"); | ||
16 | } | ||
17 | |||
18 | private: | ||
19 | }; | ||
20 | |||
21 | PluginInterface( Guy, Plugin, "Mike", 0, 1 ) | ||
22 | |||