libsidplayfp 1.8.8
iniParser.h
1/*
2 * Copyright (C) 2010-2013 Leandro Nini
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
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, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#ifndef INIPARSER_H
20#define INIPARSER_H
21
22#include <string>
23#include <map>
24#include <utility>
25
27{
28private:
29 typedef std::map<std::string, std::string> keys_t;
30 typedef std::map<std::string, keys_t> sections_t;
31
32 class parseError {};
33
34private:
35 sections_t sections;
36
37 sections_t::const_iterator curSection;
38
39private:
40 std::string parseSection(const std::string &buffer);
41
42 std::pair<std::string, std::string> parseKey(const std::string &buffer);
43
44public:
45 bool open(const char *fName);
46 void close();
47
48 bool setSection(const char *section);
49 const char *getValue(const char *key);
50};
51
52#endif // INIPARSER_H
Definition: iniParser.h:27