I forgot to add config.h and config.cpp into the repository

git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@464 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2008-12-11 02:48:25 +00:00
parent 8aab988752
commit 3462cdf827
2 changed files with 228 additions and 0 deletions

50
core/config.h Executable file
View File

@@ -0,0 +1,50 @@
/*
* This file is a part of CMSLU -- Content Management System like Unix
* and is not publicly distributed
*
* Copyright (c) 2008, Tomasz Sowa
* All rights reserved.
*
*/
#ifndef headerfileconfig
#define headerfileconfig
#include "../confparser/confparser.h"
#include "error.h"
#include "data.h"
#include "log.h"
class Config
{
public:
Config();
bool ReadConfig(bool errors_to_stdout_);
private:
ConfParser conf_parser;
void ShowError();
void AssignValues();
std::string & Text(const char *);
int Int(const char *);
bool Bool(const char *);
std::string default_str;
int default_int;
bool default_bool;
bool errors_to_stdout;
};
#endif