diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-09 17:08:55 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-09 17:08:55 -0700 |
commit | 18cb422d37084fed768518e89da6bb7ca5e8f040 (patch) | |
tree | b71b1bf383eb1275261111fdb5501b5abddc2876 /src/interfaceplugger.h | |
parent | 5d21388a640239cadcfbf3ee2fd296db9d0eab4a (diff) | |
download | stage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.gz stage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.bz2 stage-18cb422d37084fed768518e89da6bb7ca5e8f040.tar.xz stage-18cb422d37084fed768518e89da6bb7ca5e8f040.zip |
Interface plugins are almost done.
At least, the basic console interface is almost done.
Diffstat (limited to 'src/interfaceplugger.h')
-rw-r--r-- | src/interfaceplugger.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/interfaceplugger.h b/src/interfaceplugger.h new file mode 100644 index 0000000..ee36477 --- /dev/null +++ b/src/interfaceplugger.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef INTERFACE_PLUGGER_H | ||
2 | #define INETRFACE_PLUGGER_H | ||
3 | |||
4 | #include <bu/singleton.h> | ||
5 | #include <bu/plugger.h> | ||
6 | #include "interface.h" | ||
7 | |||
8 | class InterfacePlugger : public Bu::Singleton<InterfacePlugger>, | ||
9 | public Bu::Plugger<Interface> | ||
10 | { | ||
11 | friend class Bu::Singleton<InterfacePlugger>; | ||
12 | private: | ||
13 | InterfacePlugger(); | ||
14 | virtual ~InterfacePlugger(); | ||
15 | |||
16 | public: | ||
17 | |||
18 | }; | ||
19 | |||
20 | #endif | ||