aboutsummaryrefslogtreecommitdiff
path: root/src/old/tests/plugin/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/old/tests/plugin/main.cpp')
-rw-r--r--src/old/tests/plugin/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/old/tests/plugin/main.cpp b/src/old/tests/plugin/main.cpp
new file mode 100644
index 0000000..51c8390
--- /dev/null
+++ b/src/old/tests/plugin/main.cpp
@@ -0,0 +1,14 @@
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