summaryrefslogtreecommitdiffstats
blob: 0a604ecef2a53e496cc23bbb261e795c3e405be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * 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 std::vector<String> getAvailableProfiles() = 0;
		virtual void createProfile(const String& profile) = 0;
};

}
#endif