00001
00002
00003
00004
00005
00006
00007
00008 #ifndef TIMESTAMPLISTENER_H
00009 #define TIMESTAMPLISTENER_H
00010
00011
00012
00013 #include "AnnotatorCommApi.h"
00014 #include "AnnotatorComm.h"
00015 #include "Timestamp.h"
00016
00017
00018
00019 namespace annotatorcomm
00020 {
00021
00022 class AnnotatorComm;
00023
00027 class ANNCOMM_API TimestampListener
00028 {
00029 public:
00036 virtual void timestampReceived(AnnotatorComm & annotator, Timestamp & timestamp) = 0;
00037 };
00038
00039 }
00040
00041
00042
00043 #endif