diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/params.cpp | 3 | ||||
-rw-r--r-- | src/test/plugin/main.cpp | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/src/test/params.cpp b/src/test/params.cpp index 7bd2c0c..bb62047 100644 --- a/src/test/params.cpp +++ b/src/test/params.cpp | |||
@@ -16,7 +16,8 @@ int main( int argc, char *argv[] ) | |||
16 | "Set the bool off." }, | 16 | "Set the bool off." }, |
17 | { "char", 'c', PPROC_CHAR, NULL, &cChar, | 17 | { "char", 'c', PPROC_CHAR, NULL, &cChar, |
18 | "Set the char." }, | 18 | "Set the char." }, |
19 | { NULL, '\0', 0, NULL, NULL, NULL } | 19 | { NULL, '\0',0, NULL, NULL, |
20 | NULL } | ||
20 | }; | 21 | }; |
21 | 22 | ||
22 | processParams( argc, argv, table ); | 23 | processParams( argc, argv, table ); |
diff --git a/src/test/plugin/main.cpp b/src/test/plugin/main.cpp new file mode 100644 index 0000000..51c8390 --- /dev/null +++ b/src/test/plugin/main.cpp | |||
@@ -0,0 +1,14 @@ | |||
1 | #include "plugger.h" | ||
2 | #include "plugin.h" | ||
3 | |||
4 | int 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 | |||