aboutsummaryrefslogtreecommitdiff
path: root/src/tests/plugin/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/plugin/main.cpp')
-rw-r--r--src/tests/plugin/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/tests/plugin/main.cpp b/src/tests/plugin/main.cpp
deleted file mode 100644
index 51c8390..0000000
--- a/src/tests/plugin/main.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
1#include "plugger.h"
2#include "plugin.h"
3
4int main()
5{
6 Plugger<Plugin> p;
7
8 p.registerExternalPlugin( "./guy.so", "Guy" );
9
10 Plugin *t = p.instantiate( "Guy" );
11
12 p.destroy( t );
13}
14