Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 3245 was 3245, checked in by patrick, 19 years ago

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

File size: 464 bytes
Line 
1/*!
2    \file world_entity.h
3    \brief Definition of the basic WorldEntity
4*/
5
6
7#ifndef _PROTO_CLASS_H
8#define _PROTO_CLASS_H
9
10#include "stdincl.h"
11
12/*class Test;*/ /* forward definition of class Test (without including it here!)*/
13
14class ProtoClass {
15
16 public:
17  ProtoClass ();
18  ~ProtoClass ();
19
20  bool doNonSense (int nothing);
21
22 private:
23  int nonSense;  //! doxygen tag here like this - delete this variable if you use this
24
25};
26
27#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.