00001 00026 #include "jbltools/sfh/EventLoop.h" 00027 #include "jbltools/sfh/CachedO.h" 00028 00029 00030 static const char *ident="@(#)$Id: EventLoop.C,v 1.9 2005/09/29 08:56:40 boehmej Exp $"; 00031 00032 void EventLoop::loop() { 00033 for (unsigned int i = 0; i < cachedObjects.getEntries(); i++) { 00034 if (CachedO *co = dynamic_cast<CachedO *>(cachedObjects.getEntry(i))) { 00035 co->invalidateCache(); 00036 } 00037 } 00038 Fill(); 00039 } 00040 00041 EventLoop::~EventLoop () 00042 {} 00043 00044 void EventLoop::output (const char* rootfile, const char* psfile) 00045 {}