Main Page | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members

miniini.h

Go to the documentation of this file.
00001 /* miniini.h
00002  *
00003  * INI-like files mini parser
00004  *
00005  * Author: Michal Svec <msvec@suse.cz>
00006  *
00007  * $Id: miniini.h,v 1.1 2003/12/12 19:51:01 msvec Exp $
00008  */
00009 
00010 #ifndef _miniini_h
00011 #define _miniini_h
00012 
00013 #include <stdio.h>
00014 #include <string>
00015 #include <map>
00016 
00017 using std::string;
00018 using std::map;
00019 
00020 typedef map <const string, string> inisection;
00021 typedef map <const string, inisection> inifile;
00022 
00023 inifile miniini(const char *file);
00024 
00025 #endif /* _miniini_h */
00026 
00027 /* EOF */

Generated on Thu Feb 23 23:56:10 2006 for liby2util by doxygen 1.3.6