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/plugin.cpp | |
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 '')
-rw-r--r-- | src/plugin.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugin.cpp b/src/plugin.cpp new file mode 100644 index 0000000..ea558fd --- /dev/null +++ b/src/plugin.cpp | |||
@@ -0,0 +1,10 @@ | |||
1 | #include "plugin.h" | ||
2 | |||
3 | Plugin::Plugin() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Plugin::~Plugin() | ||
8 | { | ||
9 | } | ||
10 | |||