diff options
Diffstat (limited to 'SwifTools/Application/UnixApplicationPathProvider.h')
-rw-r--r-- | SwifTools/Application/UnixApplicationPathProvider.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/SwifTools/Application/UnixApplicationPathProvider.h b/SwifTools/Application/UnixApplicationPathProvider.h new file mode 100644 index 0000000..2ef04ea --- /dev/null +++ b/SwifTools/Application/UnixApplicationPathProvider.h @@ -0,0 +1,34 @@ +/* + * 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 <iostream> +#include <unistd.h> + +#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 boost::filesystem::path getExecutableDir() const; + + virtual std::vector<boost::filesystem::path> getResourceDirs() const { + return resourceDirs; + } + + private: + std::vector<boost::filesystem::path> resourceDirs; + }; +} + |