diff -r ee70b17950bd -r 80e129ec3408 src/lib/INIContentHandler.h --- a/src/lib/INIContentHandler.h Mon Nov 23 21:09:46 2020 +0100 +++ b/src/lib/INIContentHandler.h Wed Nov 25 21:50:26 2020 +0100 @@ -18,6 +18,11 @@ #include +namespace relpipe { +namespace in { +namespace ini { +namespace lib { + class INIContentHandler { public: @@ -31,6 +36,7 @@ public: std::string comment; std::string name; + std::string tag; }; class EntryEvent : public Event { @@ -61,3 +67,8 @@ virtual void comment(const CommentEvent& event) = 0; virtual void whitespace(const WhitespaceEvent& event) = 0; }; + +} +} +} +}