Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3245 in orxonox.OLD for orxonox/trunk/src/proto_class.h


Ignore:
Timestamp:
Dec 22, 2004, 12:14:35 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: enhanced protoclass with the right includes and doxygen examples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/proto_class.h

    r3224 r3245  
     1/*!
     2    \file world_entity.h
     3    \brief Definition of the basic WorldEntity
     4*/
     5
    16
    27#ifndef _PROTO_CLASS_H
    38#define _PROTO_CLASS_H
    49
    5 #include "data_tank.h"
     10#include "stdincl.h"
    611
     12/*class Test;*/ /* forward definition of class Test (without including it here!)*/
    713
    814class ProtoClass {
     
    1218  ~ProtoClass ();
    1319
     20  bool doNonSense (int nothing);
     21
     22 private:
     23  int nonSense;  //! doxygen tag here like this - delete this variable if you use this
     24
    1425};
    1526
Note: See TracChangeset for help on using the changeset viewer.