diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-10-09 22:38:59 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-10-09 22:38:59 (GMT) | 
| commit | b020901c604cf385ffe589a36399f021bb95dce1 (patch) | |
| tree | 35e9de0d1050f5360982055f61f8e958f4b3707e /Swift/Controllers/Settings/SettingsProvider.h | |
| parent | dc951ebf7e4ab6fce39f16687be1e93f8140b71f (diff) | |
| download | swift-contrib-b020901c604cf385ffe589a36399f021bb95dce1.zip swift-contrib-b020901c604cf385ffe589a36399f021bb95dce1.tar.bz2  | |
Move Settings to Swift/Controllers.
Diffstat (limited to 'Swift/Controllers/Settings/SettingsProvider.h')
| -rw-r--r-- | Swift/Controllers/Settings/SettingsProvider.h | 32 | 
1 files changed, 32 insertions, 0 deletions
diff --git a/Swift/Controllers/Settings/SettingsProvider.h b/Swift/Controllers/Settings/SettingsProvider.h new file mode 100644 index 0000000..7ddf789 --- /dev/null +++ b/Swift/Controllers/Settings/SettingsProvider.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#ifndef SWIFTEN_SettingsProvider_H +#define SWIFTEN_SettingsProvider_H + +#include "Swiften/Base/String.h" + +#include <vector> + +namespace Swift { + +class SettingsProvider { +	public: +		virtual ~SettingsProvider() {} +		virtual String getStringSetting(const String &settingPath) = 0; +		virtual void storeString(const String &settingPath, const String &settingValue) = 0; +		virtual bool getBoolSetting(const String &settingPath, bool defaultValue) = 0; +		virtual void storeBool(const String &settingPath, bool settingValue) = 0; +		virtual int getIntSetting(const String &settingPath, int defaultValue) = 0; +		virtual void storeInt(const String &settingPath, int settingValue) = 0; +		virtual std::vector<String> getAvailableProfiles() = 0; +		virtual void createProfile(const String& profile) = 0; +}; + +} +#endif + +  | 
 Swift