diff options
Diffstat (limited to 'Swiften/Avatars')
-rw-r--r-- | Swiften/Avatars/AvatarFileStorage.cpp | 1 | ||||
-rw-r--r-- | Swiften/Avatars/AvatarFileStorageFactory.h | 27 | ||||
-rw-r--r-- | Swiften/Avatars/AvatarStorageFactory.cpp | 15 | ||||
-rw-r--r-- | Swiften/Avatars/AvatarStorageFactory.h | 19 |
4 files changed, 0 insertions, 62 deletions
diff --git a/Swiften/Avatars/AvatarFileStorage.cpp b/Swiften/Avatars/AvatarFileStorage.cpp index aeb8db5..a0ebd21 100644 --- a/Swiften/Avatars/AvatarFileStorage.cpp +++ b/Swiften/Avatars/AvatarFileStorage.cpp @@ -12,7 +12,6 @@ namespace Swift { AvatarFileStorage::AvatarFileStorage(const boost::filesystem::path& path) : path_(path) { - std::cerr << "Creating avatar file storage: " << path.string() << std::endl; try { boost::filesystem::create_directory(path_); } 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; - }; -} diff --git a/Swiften/Avatars/AvatarStorageFactory.cpp b/Swiften/Avatars/AvatarStorageFactory.cpp deleted file mode 100644 index b525909..0000000 --- a/Swiften/Avatars/AvatarStorageFactory.cpp +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#include "Swiften/Avatars/AvatarStorageFactory.h" - -namespace Swift { - -AvatarStorageFactory::~AvatarStorageFactory() { - -} - -} diff --git a/Swiften/Avatars/AvatarStorageFactory.h b/Swiften/Avatars/AvatarStorageFactory.h deleted file mode 100644 index efc26e9..0000000 --- a/Swiften/Avatars/AvatarStorageFactory.h +++ /dev/null @@ -1,19 +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 - -namespace Swift { - class AvatarStorage; - class JID; - - class AvatarStorageFactory { - public: - virtual ~AvatarStorageFactory(); - - virtual AvatarStorage* createAvatarStorage(const JID& profile) = 0; - }; -} |