aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-06-05 20:04:28 +0000
committerMike Buland <eichlan@xagasoft.com>2006-06-05 20:04:28 +0000
commitfa7df2006c0e241314212644c1ec5e362220defd (patch)
tree9befeb1b72869a4989fdf155414e5d0800aa9ea5 /src/test
parent390a5110c6dfe439dddb5f7d2bb6f615c1d336ad (diff)
downloadlibbu++-fa7df2006c0e241314212644c1ec5e362220defd.tar.gz
libbu++-fa7df2006c0e241314212644c1ec5e362220defd.tar.bz2
libbu++-fa7df2006c0e241314212644c1ec5e362220defd.tar.xz
libbu++-fa7df2006c0e241314212644c1ec5e362220defd.zip
Added a complete, general plugin manager system. There's a little bit of
cleanup to do before it's totally ready, but it's looking good...
Diffstat (limited to 'src/test')
-rw-r--r--src/test/params.cpp3
-rw-r--r--src/test/plugin/main.cpp14
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
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