gloox
1.0.9
Main Page
Related Pages
Namespaces
Classes
Files
File List
src
bookmarkstorage.h
1
/*
2
Copyright (c) 2005-2013 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
{ m_bookmarkHandler = bmh; }
131
135
void
removeBookmarkHandler()
136
{ m_bookmarkHandler = 0; }
137
138
// reimplemented from PrivateXMLHandler
139
virtual
void
handlePrivateXML(
const
Tag
* xml );
140
141
// reimplemented from PrivateXMLHandler
142
virtual
void
handlePrivateXMLResult(
const
std::string& uid, PrivateXMLResult pxResult );
143
144
private
:
145
BookmarkHandler
* m_bookmarkHandler;
146
};
147
148
}
149
150
#endif // BOOKMARKSTORAGE_H__
Generated on Tue Oct 15 2013 19:25:20 for gloox by
1.8.1.2