diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-02 00:32:34 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-03-02 00:32:34 +0100 |
commit | 3bdc30e0798d6b356782da430e93b72b4303e963 (patch) | |
tree | 0ede7b1168b68fa9c1fa28819b7fc212ace98d82 /src/formats/osxml/OsxmlEventParser.hpp | |
parent | e2fd79ac8c85ac6191f6ed895fa5cdff091f7551 (diff) |
Adapted OsxmlParser to new Stack interface, enabled Osxml code in CMakeLists again
Diffstat (limited to 'src/formats/osxml/OsxmlEventParser.hpp')
-rw-r--r-- | src/formats/osxml/OsxmlEventParser.hpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/formats/osxml/OsxmlEventParser.hpp b/src/formats/osxml/OsxmlEventParser.hpp index e3fd5d4..7a8c96d 100644 --- a/src/formats/osxml/OsxmlEventParser.hpp +++ b/src/formats/osxml/OsxmlEventParser.hpp @@ -59,7 +59,8 @@ public: * @param args is a map containing the arguments that were given to the * command. */ - virtual void command(const Variant &name, const Variant::mapType &args) = 0; + virtual void commandStart(const Variant &name, + const Variant::mapType &args) = 0; /** * Called whenever an annotation starts. Note that this implicitly always @@ -88,13 +89,9 @@ public: const Variant &elementName) = 0; /** - * Called whenever the default field which was implicitly started by - * commandStart or annotationStart ends. Note that this does not end the - * range of an annotation, but the default field of the annotation. To - * signal the end of the annotation this, the annotationEnd method will be - * invoked. + * Called whenever the command or annotation tags end. */ - virtual void fieldEnd() = 0; + virtual void rangeEnd() = 0; /** * Called whenever string data is found. |