]> andersk Git - svn-all-fast-export.git/blobdiff - src/ruleparser.h
Refactor and add the ability to recurse into certain subdirs
[svn-all-fast-export.git] / src / ruleparser.h
index 443386251e5f7d9fc9db3ec70823646fabcee29b..7f458e7db3e5837d5251ebaffcf008109d8e703c 100644 (file)
@@ -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);
This page took 0.043707 seconds and 4 git commands to generate.