summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Avatars/AvatarFileStorageFactory.h')
-rw-r--r--Swiften/Avatars/AvatarFileStorageFactory.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/Swiften/Avatars/AvatarFileStorageFactory.h b/Swiften/Avatars/AvatarFileStorageFactory.h
deleted file mode 100644
index fb5963c..0000000
--- a/Swiften/Avatars/AvatarFileStorageFactory.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 <boost/filesystem.hpp>
-
-#include "AvatarStorageFactory.h"
-#include "AvatarFileStorage.h"
-
-namespace Swift {
- class AvatarFileStorageFactory: public AvatarStorageFactory {
- public:
- AvatarFileStorageFactory(const boost::filesystem::path& basePath) : basePath(basePath) {
- }
-
- virtual AvatarStorage* createAvatarStorage(const JID& profile) {
- return new AvatarFileStorage(basePath / profile.getBare().getUTF8String());
- }
-
- private:
- boost::filesystem::path basePath;
- };
-}