#ifndef ROOT_TEveEventManager
#define ROOT_TEveEventManager
#include "TEveElement.h"
#include <vector>
class TEveEventManager : public TEveElementList
{
protected:
std::vector<TString> fNewEventCommands;
public:
TEveEventManager(const Text_t* n="TEveEventManager", const Text_t* t="");
virtual ~TEveEventManager() {}
std::vector<TString>& 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 TString& cmd);
virtual void RemoveNewEventCommand(const TString& cmd);
virtual void ClearNewEventCommands();
ClassDef(TEveEventManager, 1);
};
#endif
Last change: Wed Jun 25 08:36:53 2008
Last generated: 2008-06-25 08:36
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.