Removed trailing whitespaces and CRLFs
[getmangos.git] / src / shared / Config / Config.h
blobcff2fa523e19a040ce60174d7f342c785de95fa8
1 /*
2 * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef CONFIG_H
20 #define CONFIG_H
22 #include <Policies/Singleton.h>
23 #include "Platform/Define.h"
25 class DOTCONFDocument;
27 class MANGOS_DLL_SPEC Config
29 public:
30 Config();
31 ~Config();
33 bool SetSource(const char *file, bool ignorecase = true);
34 bool Reload();
36 bool GetString(const char* name, std::string *value);
37 bool GetString(const char* name, char const **value);
38 std::string GetStringDefault(const char* name, const char* def);
40 bool GetBool(const char* name, bool *value);
41 bool GetBoolDefault(const char* name, const bool def = false);
43 bool GetInt(const char* name, int *value);
44 int GetIntDefault(const char* name, const int def);
46 bool GetFloat(const char* name, float *value);
47 float GetFloatDefault(const char* name, const float def);
49 std::string GetFilename() const { return mFilename; }
50 private:
51 std::string mFilename;
52 bool mIgnoreCase;
53 DOTCONFDocument *mConf;
56 #define sConfig MaNGOS::Singleton<Config>::Instance()
58 #endif