Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4346 in orxonox.OLD for orxonox/trunk/src/util/event/event.h


Ignore:
Timestamp:
May 27, 2005, 11:53:50 PM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: some first function and class definition of the new event handling system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/event/event.h

    r4329 r4346  
    11/*!
    2     \file proto_class.h
    3     \brief Definition of ...
     2    \file event.h
     3    \brief an abstract event
    44
    55*/
    66
    7 #ifndef _PROTO_CLASS_H
    8 #define _PROTO_CLASS_H
     7#ifndef _EVENT_H
     8#define _EVENT_H
    99
    1010#include "base_object.h"
    1111
    12 // FORWARD DEFINITION
    1312
    14 
    15 
    16 //! A class for ...
    17 class ProtoClass : public BaseObject {
     13//! An abstract event class
     14class Event : public BaseObject {
    1815
    1916 public:
    20   ProtoClass();
    21   virtual ~ProtoClass();
    22 
    23 
    24  private:
     17  Event();
     18  virtual ~Event();
    2519
    2620};
    2721
    28 #endif /* _PROTO_CLASS_H */
     22#endif /* _EVENT_H */
Note: See TracChangeset for help on using the changeset viewer.