summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Application/UnixApplicationPathProvider.h')
-rw-r--r--Swiften/Application/UnixApplicationPathProvider.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/Swiften/Application/UnixApplicationPathProvider.h b/Swiften/Application/UnixApplicationPathProvider.h
deleted file mode 100644
index c1bfd95..0000000
--- a/Swiften/Application/UnixApplicationPathProvider.h
+++ /dev/null
@@ -1,34 +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"
-
-#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;
- };
-}
-