Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/proto_class.h @ 3365

Last change on this file since 3365 was 3365, checked in by bensch, 19 years ago

orxonox/trunk: merged branches/parenting back to the.
merged with command:
svn merge branches/parenting trunk -r 3247:HEAD
resolved all conflicts in favor of parenting.

File size: 934 bytes
RevLine 
[3245]1/*!
[3246]2    \file proto_class.h
3    \brief Definition of the proto class template, used quickly start work
[3329]4    \todo Example: this shows how to use simply add a Marker that here has to be done something.
5
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.
[3245]8*/
[1853]9
[3224]10#ifndef _PROTO_CLASS_H
11#define _PROTO_CLASS_H
[1853]12
[3245]13#include "stdincl.h"
[1853]14
[3245]15/*class Test;*/ /* forward definition of class Test (without including it here!)*/
[2036]16
[3329]17//! A default class that aids you to start creating a new class
18/**
19   here can be some longer description of this class
20*/
[3365]21class ProtoClass : public BaseObject {
[1853]22
[1904]23 public:
[1853]24  ProtoClass ();
25  ~ProtoClass ();
26
[3245]27  bool doNonSense (int nothing);
28
29 private:
[3329]30  int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
[3245]31
[1853]32};
33
[3224]34#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.