00001 #ifndef BASE_SUBEVENT_H 00002 #define BASE_SUBEVENT_H 00003 00004 #include <stdint.h> 00005 00006 00007 namespace base { 00008 00009 00021 typedef uint64_t LocalStamp_t; 00022 00026 typedef double GlobalTime_t; 00027 00028 00034 class SubEvent { 00035 public: 00036 SubEvent() {} 00037 00038 virtual ~SubEvent() {} 00039 00040 virtual void Reset() {} 00041 00042 }; 00043 00044 } 00045 00046 00047 00048 #endif