diff options
Diffstat (limited to 'Swiften/Application/MacOSXApplicationPathProvider.h')
-rw-r--r-- | Swiften/Application/MacOSXApplicationPathProvider.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Swiften/Application/MacOSXApplicationPathProvider.h b/Swiften/Application/MacOSXApplicationPathProvider.h deleted file mode 100644 index 85cca0a..0000000 --- a/Swiften/Application/MacOSXApplicationPathProvider.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include "Swiften/Application/ApplicationPathProvider.h" - -namespace Swift { - class MacOSXApplicationPathProvider : public ApplicationPathProvider { - public: - MacOSXApplicationPathProvider(const String& name); - - virtual boost::filesystem::path getHomeDir() const; - boost::filesystem::path getDataDir() const; - virtual boost::filesystem::path getExecutableDir() const; - - virtual std::vector<boost::filesystem::path> getResourceDirs() const { - return resourceDirs; - } - - private: - std::vector<boost::filesystem::path> resourceDirs; - }; -} |