diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-06-05 20:04:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-06-05 20:04:28 +0000 |
commit | fa7df2006c0e241314212644c1ec5e362220defd (patch) | |
tree | 9befeb1b72869a4989fdf155414e5d0800aa9ea5 /src/test/plugin | |
parent | 390a5110c6dfe439dddb5f7d2bb6f615c1d336ad (diff) | |
download | libbu++-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/plugin')
-rw-r--r-- | src/test/plugin/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
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 | |||