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.h | |
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.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/plugin.h b/src/plugin.h new file mode 100644 index 0000000..f726867 --- /dev/null +++ b/src/plugin.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef PLUGIN_H | ||
2 | #define PLUGIN_H | ||
3 | |||
4 | class Plugin | ||
5 | { | ||
6 | public: | ||
7 | Plugin(); | ||
8 | virtual ~Plugin(); | ||
9 | |||
10 | private: | ||
11 | |||
12 | }; | ||
13 | |||
14 | #endif | ||