libsidplayfp  2.0.2
iniParser.h
1 /*
2  * Copyright (C) 2010-2015 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 
26 namespace libsidplayfp
27 {
28 
29 class iniParser
30 {
31 private:
32  typedef std::map<std::string, std::string> keys_t;
33  typedef std::map<std::string, keys_t> sections_t;
34 
35 private:
36  sections_t sections;
37 
38  sections_t::const_iterator curSection;
39 
40 private:
41  std::string parseSection(const std::string &buffer);
42 
43  keys_t::value_type parseKey(const std::string &buffer);
44 
45 public:
46  bool open(const char *fName);
47  void close();
48 
49  bool setSection(const char *section);
50  const char *getValue(const char *key);
51 };
52 
53 }
54 
55 #endif // INIPARSER_H
libsidplayfp::iniParser
Definition: iniParser.h:30