00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef ANNOTATIONSHANDLER_H__
00016 #define ANNOTATIONSHANDLER_H__
00017
00018 #include "macros.h"
00019
00020 #include <string>
00021 #include <list>
00022
00023 namespace gloox
00024 {
00025
00033 class GLOOX_API AnnotationsHandler
00034 {
00035 public:
00039 struct annotationsListItem
00040 {
00041 std::string jid;
00042 std::string cdate;
00043 std::string mdate;
00044 std::string note;
00045 };
00046
00050 typedef std::list<annotationsListItem> AnnotationsList;
00051
00055 virtual ~AnnotationsHandler() {};
00056
00061 virtual void handleAnnotations( const AnnotationsList &aList ) = 0;
00062 };
00063
00064 }
00065
00066 #endif // ANNOTATIONSHANDLER_H__