00001 00011 #ifndef __EVENTLOOP_H 00012 #define __EVENTLOOP_H 00013 00014 #include "jbltools/sfh/SFROList.h" 00015 00016 // Class EventLoop 00018 00102 class EventLoop: public SFROList { 00103 public: 00105 virtual ~EventLoop (); 00107 virtual void loop (); 00109 virtual void output (const char* rootfile = "", 00110 const char* psfile = "" 00111 ); 00112 00113 protected: 00114 ROList cachedObjects; 00115 }; 00116 00117 #endif