summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-10-09 22:38:59 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-10-09 22:38:59 (GMT)
commitb020901c604cf385ffe589a36399f021bb95dce1 (patch)
tree35e9de0d1050f5360982055f61f8e958f4b3707e /Swiften
parentdc951ebf7e4ab6fce39f16687be1e93f8140b71f (diff)
downloadswift-b020901c604cf385ffe589a36399f021bb95dce1.zip
swift-b020901c604cf385ffe589a36399f021bb95dce1.tar.bz2
Move Settings to Swift/Controllers.
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/Settings/DummySettingsProvider.h29
-rw-r--r--Swiften/Settings/SettingsProvider.h32
2 files changed, 0 insertions, 61 deletions
diff --git a/Swiften/Settings/DummySettingsProvider.h b/Swiften/Settings/DummySettingsProvider.h
deleted file mode 100644
index 33f02b7..0000000
--- a/Swiften/Settings/DummySettingsProvider.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2010 Kevin Smith
- * Licensed under the GNU General Public License v3.
- * See Documentation/Licenses/GPLv3.txt for more information.
- */
-
-#pragma once
-
-#include "Swiften/Settings/SettingsProvider.h"
-
-namespace Swift {
-
-class DummySettingsProvider : public SettingsProvider {
- public:
- virtual ~DummySettingsProvider() {}
- virtual String getStringSetting(const String&) {return "";}
- virtual void storeString(const String &, const String &) {}
- virtual bool getBoolSetting(const String &, bool ) {return true;}
- virtual void storeBool(const String &, bool ) {}
- virtual int getIntSetting(const String &, int ) {return 0;}
- virtual void storeInt(const String &, int ) {}
- virtual std::vector<String> getAvailableProfiles() {return std::vector<String>();}
- virtual void createProfile(const String& ) {}
-};
-
-}
-
-
-
diff --git a/Swiften/Settings/SettingsProvider.h b/Swiften/Settings/SettingsProvider.h
deleted file mode 100644
index 7ddf789..0000000
--- a/Swiften/Settings/SettingsProvider.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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
-
-