aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago@kde.org>2009-06-08 11:06:17 +0200
committerThiago Macieira <thiago@kde.org>2009-06-08 11:06:17 +0200
commita5fd311b84821f8cfa9ce89725501385070e744d (patch)
tree60af0ca84e0375e8981456b896613f28560861ee /src/ruleparser.h
parent18dfc8c47b4fbd862cf1d2bbf245e2ff48eeb390 (diff)
downloadsvn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.gz
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.bz2
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.tar.xz
svn2git-a5fd311b84821f8cfa9ce89725501385070e744d.zip
Add support for annotated tags
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r--src/ruleparser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h
index 9525f14..2e0904e 100644
--- a/src/ruleparser.h
+++ b/src/ruleparser.h
@@ -47,6 +47,7 @@ public:
int minRevision;
int maxRevision;
int lineNumber;
+ bool annotate;
enum Action {
Ignore,
@@ -54,7 +55,7 @@ public:
Recurse
} action;
- Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }
+ Match() : minRevision(-1), maxRevision(-1), lineNumber(0), annotate(false), action(Ignore) { }
};
Rules(const QString &filename);