root/trunk/src/shared/Config/Config.h @ 11

Revision 2, 1.8 kB (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1/*
2 * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
3 *
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.
8 *
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.
13 *
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
17 */
18
19#ifndef CONFIG_H
20#define CONFIG_H
21
22#include <Policies/Singleton.h>
23#include "Platform/Define.h"
24
25class DOTCONFDocument;
26
27class MANGOS_DLL_SPEC Config
28{
29    public:
30        Config();
31        ~Config();
32
33        bool SetSource(const char *file, bool ignorecase = true);
34        bool Reload();
35
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);
39
40        bool GetBool(const char* name, bool *value);
41        bool GetBoolDefault(const char* name, const bool def = false);
42
43        bool GetInt(const char* name, int *value);
44        int GetIntDefault(const char* name, const int def);
45
46        bool GetFloat(const char* name, float *value);
47        float GetFloatDefault(const char* name, const float def);
48
49        std::string GetFilename() const { return mFilename; }
50    private:
51        std::string mFilename;
52        bool mIgnoreCase;
53        DOTCONFDocument *mConf;
54};
55
56#define sConfig MaNGOS::Singleton<Config>::Instance()
57
58#endif
Note: See TracBrowser for help on using the browser.