• Main Page
  • Classes
  • Files
  • File List

Swiften/Client/Storages.h

00001 /*
00002  * Copyright (c) 2010 Remko Tronçon
00003  * Licensed under the GNU General Public License v3.
00004  * See Documentation/Licenses/GPLv3.txt for more information.
00005  */
00006 
00007 #pragma once
00008 
00009 #include <Swiften/Base/API.h>
00010 
00011 namespace Swift {
00012   class VCardStorage;
00013   class AvatarStorage;
00014   class CapsStorage;
00015   class RosterStorage;
00016   class HistoryStorage;
00017 
00022   class SWIFTEN_API Storages {
00023     public:
00024       virtual ~Storages();
00025 
00026       virtual VCardStorage* getVCardStorage() const = 0;
00027       virtual AvatarStorage* getAvatarStorage() const = 0;
00028       virtual CapsStorage* getCapsStorage() const = 0;
00029       virtual RosterStorage* getRosterStorage() const = 0;
00030       virtual HistoryStorage* getHistoryStorage() const = 0;
00031   };
00032 }

Generated on Fri Oct 12 2012 21:00:19 for Swiften by  doxygen 1.7.1