From 40f33ed35691c5052beaa98ca89c0f22ceb12666 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 15 Feb 2015 22:57:47 +0100 Subject: Added (completely untested) osxml parser --- src/formats/osml/OsmlParser.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/formats/osml/OsmlParser.hpp') diff --git a/src/formats/osml/OsmlParser.hpp b/src/formats/osml/OsmlParser.hpp index 37505b4..f8f5b6c 100644 --- a/src/formats/osml/OsmlParser.hpp +++ b/src/formats/osml/OsmlParser.hpp @@ -17,32 +17,32 @@ */ /** - * @file OsdmParser.hpp + * @file OsmlParser.hpp * - * Contains the parser of the osdm format, the standard plain-text format used + * Contains the parser of the Osml format, the standard plain-text format used * by Ousía for documents. * * @author Andreas Stöckel (astoecke@techfak.uni-bielefeld.de) */ -#ifndef _OUSIA_OSDM_PARSER_HPP_ -#define _OUSIA_OSDM_PARSER_HPP_ +#ifndef _OUSIA_OSML_PARSER_HPP_ +#define _OUSIA_OSML_PARSER_HPP_ #include namespace ousia { /** - * OsdmParser is a small wrapper implementing the Parser interface. The actual - * parsing is performed with the OsdmStreamParser in conjunction with the + * OsmlParser is a small wrapper implementing the Parser interface. The actual + * parsing is performed with the OsmlStreamParser in conjunction with the * ParserStateStack. */ -class OsdmParser : public Parser { +class OsmlParser : public Parser { protected: void doParse(CharReader &reader, ParserContext &ctx) override; }; } -#endif /* _OUSIA_OSDM_PARSER_HPP_ */ +#endif /* _OUSIA_OSML_PARSER_HPP_ */ -- cgit v1.2.3