gloox  0.9.9.12
annotations.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 ANNOTATIONS_H__
16 #define ANNOTATIONS_H__
17 
18 #include "macros.h"
19 
20 #include "annotationshandler.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 
94  class GLOOX_API Annotations : public PrivateXML, public PrivateXMLHandler
95  {
96  public:
101  Annotations( ClientBase *parent );
102 
106  virtual ~Annotations();
107 
113  void storeAnnotations( const AnnotationsList& aList );
114 
119  void requestAnnotations();
120 
125  void registerAnnotationsHandler( AnnotationsHandler *ah );
126 
130  void removeAnnotationsHandler();
131 
132  // reimplemented from PrivateXMLHandler
133  virtual void handlePrivateXML( const std::string& tag, Tag *xml );
134 
135  // reimplemented from PrivateXMLHandler
136  virtual void handlePrivateXMLResult( const std::string& uid, PrivateXMLResult pxResult );
137 
138  private:
139  AnnotationsHandler *m_annotationsHandler;
140  };
141 
142 }
143 
144 #endif // ANNOTATIONS_H__