]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
New files: common base class for an event object (VSDEvent and Alieve::Event).
authormtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 10 Jul 2006 17:35:58 +0000 (17:35 +0000)
committermtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 10 Jul 2006 17:35:58 +0000 (17:35 +0000)
EVE/Reve/EventBase.cxx [new file with mode: 0644]
EVE/Reve/EventBase.h [new file with mode: 0644]

diff --git a/EVE/Reve/EventBase.cxx b/EVE/Reve/EventBase.cxx
new file mode 100644 (file)
index 0000000..8234e84
--- /dev/null
@@ -0,0 +1,15 @@
+// $Header$
+
+#include "EventBase.h"
+
+using namespace Reve;
+
+//______________________________________________________________________
+// Event
+//
+
+ClassImp(EventBase)
+
+EventBase::EventBase(const Text_t* n, const Text_t* t) :
+  RenderElementList(n, t)
+{}
diff --git a/EVE/Reve/EventBase.h b/EVE/Reve/EventBase.h
new file mode 100644 (file)
index 0000000..63903ec
--- /dev/null
@@ -0,0 +1,23 @@
+// $Header$
+
+#ifndef REVE_EventBase_H
+#define REVE_EventBase_H
+
+#include <Reve/RenderElement.h>
+
+namespace Reve {
+
+class EventBase : public RenderElementList
+{
+protected:
+
+public:
+  EventBase(const Text_t* n="EventBase", const Text_t* t="");
+  virtual ~EventBase() {}
+
+  ClassDef(EventBase, 1);
+}; // endclass Event
+
+}
+
+#endif