event.h

Go to the documentation of this file.
00001 /* MAINTAINER: Lukas */
00002 
00003 #ifndef _EVENT_H
00004 #define _EVENT_H
00005 
00009 class Event
00010 {
00011 
00012 public:
00013         
00014         Event();
00015         virtual ~Event();
00016 
00020         virtual void process() = 0;
00021         
00025         int getTimeStamp();
00026 
00030         void setTimeStamp(int timeStamp);
00031 
00032 private:
00033         
00034         int mTimeStamp;
00035 
00036 };
00037 
00038 #endif // _EVENT_H

Generated on Wed Apr 12 13:55:27 2006 for bjs by  doxygen 1.4.5