diff options
Diffstat (limited to '')
-rw-r--r-- | src/targetfactory.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/targetfactory.h b/src/targetfactory.h deleted file mode 100644 index ee1fc2a..0000000 --- a/src/targetfactory.h +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | #ifndef TARGET_FACTORY_H | ||
2 | #define TARGET_FACTORY_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "bu/plugger.h" | ||
7 | #include "bu/singleton.h" | ||
8 | #include "target.h" | ||
9 | |||
10 | class TargetFactory : public Bu::Plugger<Target>, public Bu::Singleton<TargetFactory> | ||
11 | { | ||
12 | public: | ||
13 | TargetFactory(); | ||
14 | virtual ~TargetFactory(); | ||
15 | |||
16 | private: | ||
17 | |||
18 | }; | ||
19 | |||
20 | #endif | ||