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