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