summaryrefslogtreecommitdiff
path: root/src/interfaceplugger.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-01-09 17:08:55 -0700
committerMike Buland <eichlan@xagasoft.com>2012-01-09 17:08:55 -0700
commit18cb422d37084fed768518e89da6bb7ca5e8f040 (patch)
treeb71b1bf383eb1275261111fdb5501b5abddc2876 /src/interfaceplugger.h
parent5d21388a640239cadcfbf3ee2fd296db9d0eab4a (diff)
downloadstage-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.h20
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
8class InterfacePlugger : public Bu::Singleton<InterfacePlugger>,
9 public Bu::Plugger<Interface>
10{
11friend class Bu::Singleton<InterfacePlugger>;
12private:
13 InterfacePlugger();
14 virtual ~InterfacePlugger();
15
16public:
17
18};
19
20#endif