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