Files
retrobsd/tools/configsys/gstore.h
2014-04-09 14:27:18 +01:00

20 lines
249 B
C++

#ifndef _GSTORE_H
#define _GSTORE_H
#include <vector>
#include <map>
#include <iostream>
#include <fstream>
using namespace std;
class gstore {
public:
map <string,string> values;
public:
void read(ifstream&);
};
#endif