diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-03 20:20:40 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-03-03 20:20:40 +0100 |
commit | 42c0480b4fbf80afa0c5b13650a0af74311d7202 (patch) | |
tree | 13f40104b4d8ebcb394f9adbf0b6a723889acea9 /src/core/parser/stack/Handler.cpp | |
parent | b6ec0740e027fc1bc7f6d2513583187061bc8f0a (diff) |
Implemented annotation handling
Diffstat (limited to 'src/core/parser/stack/Handler.cpp')
-rw-r--r-- | src/core/parser/stack/Handler.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/parser/stack/Handler.cpp b/src/core/parser/stack/Handler.cpp index c01e74c..ef6ca8b 100644 --- a/src/core/parser/stack/Handler.cpp +++ b/src/core/parser/stack/Handler.cpp @@ -109,8 +109,7 @@ bool EmptyHandler::startCommand(Variant::mapType &args) return true; } -bool EmptyHandler::startAnnotation(Variant::mapType &args, - Handler::AnnotationType annotationType) +bool EmptyHandler::startAnnotation(Variant::mapType &args) { // Do not support annotations. Annotations are too complicated for poor // EmptyHandler. @@ -165,8 +164,7 @@ bool StaticHandler::startCommand(Variant::mapType &args) return true; } -bool StaticHandler::startAnnotation(Variant::mapType &args, - Handler::AnnotationType annotationType) +bool StaticHandler::startAnnotation(Variant::mapType &args) { return false; } |