yast2-core
miniini.h
Go to the documentation of this file.
1 /* miniini.h
2  *
3  * INI-like files mini parser
4  *
5  * Author: Michal Svec <msvec@suse.cz>
6  *
7  * $Id$
8  */
9 
10 #ifndef _miniini_h
11 #define _miniini_h
12 
13 #include <stdio.h>
14 #include <string>
15 #include <map>
16 
17 using std::string;
18 using std::map;
19 
20 typedef map <const string, string> inisection;
21 typedef map <const string, inisection> inifile;
22 
23 inifile miniini(const char *file);
24 
25 #endif /* _miniini_h */
26 
27 /* EOF */
map< const string, inisection > inifile
Definition: miniini.h:21
map< const string, string > inisection
Definition: miniini.h:20
inifile miniini(const char *file)
Definition: miniini.cc:22

Generated on a sunny day for yast2-core by doxygen 1.8.5