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