Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3955 in orxonox.OLD for orxonox/trunk/src/proto/proto_class.h


Ignore:
Timestamp:
Apr 25, 2005, 11:37:47 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: better proto-class-files

File:
1 edited

Legend:

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

    r3655 r3955  
    11/*!
    22    \file proto_class.h
    3     \brief Definition of the proto class template, used quickly start work
    4     \todo Example: this shows how to use simply add a Marker that here has to be done something.
     3    \brief Definition of ...
    54
    6     The Protoclass exists, to help you quikly getting the run for how to develop in orxonox.
    7     It is an example for the CODING-CONVENTION, and a starting-point for every class.
    85*/
    96
     
    118#define _PROTO_CLASS_H
    129
    13 #include "what realy has to be included"
    1410#include "base_object.h"
    1511
    16 // FORWARD DEFINITION \\
    17 class someClassWeNeed;
     12// FORWARD DEFINITION
    1813
    1914
    20 /*class Test;*/ /* forward definition of class Test (without including it here!)*/
    2115
    22 //! A default class that aids you to start creating a new class
    23 /**
    24    here can be some longer description of this class
    25 */
     16//! A class for ...
    2617class ProtoClass : public BaseObject {
    2718
     
    3021  virtual ~ProtoClass();
    3122
    32   bool doNonSense (int nothing);
    3323
    3424 private:
    35   int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
    3625
    3726};
Note: See TracChangeset for help on using the changeset viewer.