diff options
Diffstat (limited to 'Swiften/VCards/VCardMemoryStorageFactory.h')
-rw-r--r-- | Swiften/VCards/VCardMemoryStorageFactory.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Swiften/VCards/VCardMemoryStorageFactory.h b/Swiften/VCards/VCardMemoryStorageFactory.h deleted file mode 100644 index d48794d..0000000 --- a/Swiften/VCards/VCardMemoryStorageFactory.h +++ /dev/null @@ -1,24 +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 "Swiften/VCards/VCardStorageFactory.h" -#include "Swiften/VCards/VCardMemoryStorage.h" - -namespace Swift { - class VCardMemoryStorageFactory : public VCardStorageFactory { - public: - VCardMemoryStorageFactory() { - } - - virtual VCardStorage* createVCardStorage(const String& profile) { - return new VCardMemoryStorage(); - } - }; -} |