Changeset 4346 in orxonox.OLD for orxonox/trunk/src/util/event/event.h
- Timestamp:
- May 27, 2005, 11:53:50 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/event/event.h
r4329 r4346 1 1 /*! 2 \file proto_class.h3 \brief Definition of ...2 \file event.h 3 \brief an abstract event 4 4 5 5 */ 6 6 7 #ifndef _ PROTO_CLASS_H8 #define _ PROTO_CLASS_H7 #ifndef _EVENT_H 8 #define _EVENT_H 9 9 10 10 #include "base_object.h" 11 11 12 // FORWARD DEFINITION13 12 14 15 16 //! A class for ... 17 class ProtoClass : public BaseObject { 13 //! An abstract event class 14 class Event : public BaseObject { 18 15 19 16 public: 20 ProtoClass(); 21 virtual ~ProtoClass(); 22 23 24 private: 17 Event(); 18 virtual ~Event(); 25 19 26 20 }; 27 21 28 #endif /* _ PROTO_CLASS_H */22 #endif /* _EVENT_H */
Note: See TracChangeset
for help on using the changeset viewer.