src/lib/INIContentHandler.h
branchv_0
changeset 16 b9a3c806468a
child 19 90f2b8ca32bf
equal deleted inserted replaced
15:f4fb07ed8753 16:b9a3c806468a
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
       
     4  *
       
     5  * This program is free software: you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation, version 3 of the License.
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    16  */
       
    17 #pragma once
       
    18 
       
    19 #include <string>
       
    20 
       
    21 class INIContentHandler {
       
    22 public:
       
    23 
       
    24 	class Event {
       
    25 	public:
       
    26 		int64_t eventNumber = -1;
       
    27 		int64_t lineNumber = -1;
       
    28 		std::string comment;
       
    29 	};
       
    30 
       
    31 	class SectionStartEvent : public Event {
       
    32 	public:
       
    33 		std::string name;
       
    34 	};
       
    35 
       
    36 	class EntryEvent : public Event {
       
    37 	public:
       
    38 		std::string key;
       
    39 		std::string subKey;
       
    40 		std::string fullKey;
       
    41 		std::string value;
       
    42 	};
       
    43 
       
    44 	virtual ~INIContentHandler() = default;
       
    45 	virtual void startDocument() = 0;
       
    46 	virtual void endDocument() = 0;
       
    47 	virtual void startSection(const SectionStartEvent& event) = 0;
       
    48 	virtual void endSection() = 0;
       
    49 	virtual void entry(const EntryEvent& event) = 0;
       
    50 };