gloox  0.9.9.12
bookmarkstorage.h
1 /*
2  Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net>
3  This file is part of the gloox library. http://camaya.net/gloox
4 
5  This software is distributed under a license. The full license
6  agreement can be found in the file LICENSE in this distribution.
7  This software may not be copied, modified, sold or distributed
8  other than expressed in the named license agreement.
9 
10  This software is distributed without any warranty.
11 */
12 
13 
14 
15 #ifndef BOOKMARKSTORAGE_H__
16 #define BOOKMARKSTORAGE_H__
17 
18 #include "macros.h"
19 
20 #include "bookmarkhandler.h"
21 #include "privatexml.h"
22 #include "privatexmlhandler.h"
23 
24 #include <string>
25 #include <list>
26 
27 namespace gloox
28 {
29 
30  class Tag;
31 
97  class GLOOX_API BookmarkStorage : public PrivateXML, public PrivateXMLHandler
98  {
99  public:
104  BookmarkStorage( ClientBase *parent );
105 
109  virtual ~BookmarkStorage();
110 
117  void storeBookmarks( const BookmarkList& bList, const ConferenceList& cList );
118 
123  void requestBookmarks();
124 
129  void registerBookmarkHandler( BookmarkHandler *bmh );
130 
134  void removeBookmarkHandler();
135 
136  // reimplemented from PrivateXMLHandler
137  virtual void handlePrivateXML( const std::string& tag, Tag *xml );
138 
139  // reimplemented from PrivateXMLHandler
140  virtual void handlePrivateXMLResult( const std::string& uid, PrivateXMLResult pxResult );
141 
142  private:
143  BookmarkHandler *m_bookmarkHandler;
144  };
145 
146 }
147 
148 #endif // BOOKMARKSTORAGE_H__