gloox  1.1-svn
annotations.h
1 /*
2  Copyright (c) 2005-2009 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  { m_annotationsHandler = ah; }
127 
131  void removeAnnotationsHandler()
132  { m_annotationsHandler = 0; }
133 
134  // reimplemented from PrivateXMLHandler
135  virtual void handlePrivateXML( const Tag* xml );
136 
137  // reimplemented from PrivateXMLHandler
138  virtual void handlePrivateXMLResult( const std::string& uid, PrivateXMLResult pxResult );
139 
140  private:
141  AnnotationsHandler* m_annotationsHandler;
142 
143  };
144 
145 }
146 
147 #endif // ANNOTATIONS_H__