summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-08-21 18:29:33 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-08-21 18:30:47 (GMT)
commit734cdf96ee07357382914c1e38e19a5bf1f5078d (patch)
tree1fb7faf16f5cd4d49cb859a6c8304b9af7fde61f /Swiften/Avatars/AvatarStorageFactory.h
parente019b91aa2326795fa51a876e365573355576842 (diff)
downloadswift-734cdf96ee07357382914c1e38e19a5bf1f5078d.zip
swift-734cdf96ee07357382914c1e38e19a5bf1f5078d.tar.bz2
Store avatars per profile.
Diffstat (limited to 'Swiften/Avatars/AvatarStorageFactory.h')
-rw-r--r--Swiften/Avatars/AvatarStorageFactory.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Swiften/Avatars/AvatarStorageFactory.h b/Swiften/Avatars/AvatarStorageFactory.h
new file mode 100644
index 0000000..efc26e9
--- /dev/null
+++ b/Swiften/Avatars/AvatarStorageFactory.h
@@ -0,0 +1,19 @@
+/*
+ * 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;
+ };
+}