diff options
Diffstat (limited to 'Swiften/Avatars/AvatarFileStorageFactory.h')
-rw-r--r-- | Swiften/Avatars/AvatarFileStorageFactory.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Swiften/Avatars/AvatarFileStorageFactory.h b/Swiften/Avatars/AvatarFileStorageFactory.h new file mode 100644 index 0000000..fb5963c --- /dev/null +++ b/Swiften/Avatars/AvatarFileStorageFactory.h @@ -0,0 +1,27 @@ +/* + * 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; + }; +} |