aboutsummaryrefslogtreecommitdiff
path: root/src/function.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/function.h17
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
7class Function
8{
9public:
10 Function();
11 virtual ~Function();
12
13private:
14
15};
16
17#endif