aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago@cassini.local.lan>2007-12-24 11:28:41 -0200
committerThiago Macieira <thiago@cassini.local.lan>2007-12-24 11:28:41 -0200
commit5b8a1c0c71e75fd613fb1a27c61bdedf11803729 (patch)
tree21b60cfd2d66536b3219218693e176fba14fc295 /src/ruleparser.h
parentd91c2d9b90280decfafae66d4a72e735eeb1a125 (diff)
downloadsvn2git-5b8a1c0c71e75fd613fb1a27c61bdedf11803729.tar
svn2git-5b8a1c0c71e75fd613fb1a27c61bdedf11803729.tar.gz
svn2git-5b8a1c0c71e75fd613fb1a27c61bdedf11803729.tar.bz2
svn2git-5b8a1c0c71e75fd613fb1a27c61bdedf11803729.tar.xz
svn2git-5b8a1c0c71e75fd613fb1a27c61bdedf11803729.zip
Add support for min/max revision ranges
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r--src/ruleparser.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h
index 483316c..1d561e0 100644
--- a/src/ruleparser.h
+++ b/src/ruleparser.h
@@ -43,6 +43,10 @@ public:
QString repository;
QString branch;
QString path;
+ int minRevision;
+ int maxRevision;
+
+ Match() : minRevision(-1), maxRevision(-1) { }
};
Rules(const QString &filename);