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