12 lines
144 B
C++
12 lines
144 B
C++
#include <string>
|
|
#include <map>
|
|
|
|
class IniParser
|
|
{
|
|
std::map<std::string, std::string> _Pairs;
|
|
|
|
void parse (const std::string &text)
|
|
{
|
|
}
|
|
}
|