diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-23 03:22:03 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-23 03:22:03 +0000 |
commit | 7a7390337e04d0163b97c1da7bdaa198bacaff72 (patch) | |
tree | 019eb3f455b0e8b35be9ae4560da319f377ea14e /src/rule.h | |
parent | f5cf5725026ecb2fa63d729fb6745b4da15e69d8 (diff) | |
download | build-7a7390337e04d0163b97c1da7bdaa198bacaff72.tar.gz build-7a7390337e04d0163b97c1da7bdaa198bacaff72.tar.bz2 build-7a7390337e04d0163b97c1da7bdaa198bacaff72.tar.xz build-7a7390337e04d0163b97c1da7bdaa198bacaff72.zip |
Loads more stuff...it's nearly working now.
Diffstat (limited to 'src/rule.h')
-rw-r--r-- | src/rule.h | 17 |
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 | |||
7 | class Rule | ||
8 | { | ||
9 | public: | ||
10 | Rule(); | ||
11 | virtual ~Rule(); | ||
12 | |||
13 | private: | ||
14 | |||
15 | }; | ||
16 | |||
17 | #endif | ||