/* * 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 "SwifTools/Application/ApplicationPathProvider.h" #include #include #include "Swiften/Base/ByteArray.h" #include "Swiften/Base/foreach.h" namespace Swift { class UnixApplicationPathProvider : public ApplicationPathProvider { public: UnixApplicationPathProvider(const String& name); virtual boost::filesystem::path getHomeDir() const; boost::filesystem::path getDataDir() const; virtual std::vector getResourceDirs() const { return resourceDirs; } private: std::vector resourceDirs; }; }