diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-06-05 20:18:00 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-06-05 20:18:00 +0000 |
commit | 579a58106e541ef4a005eceaf4577048c69fa539 (patch) | |
tree | d90589bd8e3711a042e8f21305549e2c3be2cf0c /src/test/plugin/plugin.h | |
parent | fa7df2006c0e241314212644c1ec5e362220defd (diff) | |
download | libbu++-579a58106e541ef4a005eceaf4577048c69fa539.tar.gz libbu++-579a58106e541ef4a005eceaf4577048c69fa539.tar.bz2 libbu++-579a58106e541ef4a005eceaf4577048c69fa539.tar.xz libbu++-579a58106e541ef4a005eceaf4577048c69fa539.zip |
Fixes to the plugin system, it's a little tricky to test, but it's looking good.
Diffstat (limited to 'src/test/plugin/plugin.h')
-rw-r--r-- | src/test/plugin/plugin.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/plugin/plugin.h b/src/test/plugin/plugin.h new file mode 100644 index 0000000..f726867 --- /dev/null +++ b/src/test/plugin/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 | ||