aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r--src/ruleparser.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h
index 4433862..7f458e7 100644
--- a/src/ruleparser.h
+++ b/src/ruleparser.h
@@ -48,7 +48,13 @@ public:
int maxRevision;
int lineNumber;
- Match() : minRevision(-1), maxRevision(-1), lineNumber(0) { }
+ enum Action {
+ Ignore,
+ Export,
+ Recurse
+ } action;
+
+ Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }
};
Rules(const QString &filename);