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