diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:04:02 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:04:02 +0000 |
commit | fb28f6800864176be2ffca29e8e664b641f33170 (patch) | |
tree | ba9180ac442939edc4eacbe1fdae93c5a7f87cee /src/viewplugger.h | |
parent | 51e21a316be6e052251b3dfc7d671061ebd67cee (diff) | |
download | build-fb28f6800864176be2ffca29e8e664b641f33170.tar.gz build-fb28f6800864176be2ffca29e8e664b641f33170.tar.bz2 build-fb28f6800864176be2ffca29e8e664b641f33170.tar.xz build-fb28f6800864176be2ffca29e8e664b641f33170.zip |
m3 is copied into trunk, we should be good to go, now.
Diffstat (limited to 'src/viewplugger.h')
-rw-r--r-- | src/viewplugger.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/viewplugger.h b/src/viewplugger.h new file mode 100644 index 0000000..b58635c --- /dev/null +++ b/src/viewplugger.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef VIEW_PLUGGER_H | ||
2 | #define VIEW_PLUGGER_H | ||
3 | |||
4 | #include "view.h" | ||
5 | #include <bu/plugger.h> | ||
6 | #include <bu/singleton.h> | ||
7 | |||
8 | class ViewPlugger : public Bu::Plugger<View>, public Bu::Singleton<ViewPlugger> | ||
9 | { | ||
10 | friend class Bu::Singleton<ViewPlugger>; | ||
11 | private: | ||
12 | ViewPlugger(); | ||
13 | |||
14 | public: | ||
15 | virtual ~ViewPlugger(); | ||
16 | |||
17 | private: | ||
18 | }; | ||
19 | |||
20 | #endif | ||