still a lot of stuff to fix before everything works as it should. compilation works, linking produces errors. most code cleanups done.
16 lines
247 B
Plaintext
16 lines
247 B
Plaintext
#ifndef _CONFIGREADER_H
|
|
#define _CONFIGREADER_H
|
|
|
|
#include "DefScript/DefScript.h"
|
|
|
|
namespace ConfigReader {
|
|
|
|
bool ReadConf(std::string, VarSet&, bool);
|
|
void SetMainConf(VarSet&);
|
|
void SetUsersConf(VarSet&);
|
|
|
|
|
|
};
|
|
|
|
#endif
|