00001 00002 00003 00004 00005 00006 00007 00008 #ifndef EVDB_AUTOADVANCE_H 00009 #define EVDB_AUTOADVANCE_H 00010 #include "TObject.h" 00011 class TTimer; 00012 00013 namespace evdb { 00015 class AutoAdvance : public TObject { 00016 public: 00017 AutoAdvance(); 00018 ~AutoAdvance(); 00019 Bool_t HandleTimer(TTimer *t); 00020 00021 public: 00022 TTimer* fTimer; 00023 }; 00024 } 00025 00026 #endif 00027
1.3.9.1