#ifndef ROOT_TEveEventManager
#define ROOT_TEveEventManager
#include "TEveElement.h"
#include "TList.h"
class TEveEventManager : public TEveElementList
{
protected:
   TList        fNewEventCommands;
public:
   TEveEventManager(const Text_t* n="TEveEventManager", const Text_t* t="");
   virtual ~TEveEventManager() {}
   TList& GetNewEventCommands() { return fNewEventCommands; }
   virtual void Open() {}
   virtual void GotoEvent(Int_t ) {}
   virtual void NextEvent() {}
   virtual void PrevEvent() {}
   virtual void Close() {}
   virtual void AfterNewEventLoaded();
   virtual void AddNewEventCommand(const Text_t* cmd);
   ClassDef(TEveEventManager, 1); 
};
#endif
Last update: Thu Jan 17 08:48:23 2008
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.