Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/levelloader/src/proto_class.h @ 3715

Last change on this file since 3715 was 3605, checked in by bensch, 20 years ago

orxonox/trunk: merged trunk back to levelloader
merged with command:
svn merge -r 3499:HEAD trunk branches/levelloader

Conflicts in
C track_manager.h
C world_entities/player.cc
C world_entities/player.h
C world_entities/environment.h
C lib/coord/p_node.cc
C defs/debug.h
C track_manager.cc
C story_entities/campaign.h

solved in merge-favouring. It was quite easy because Chris only worked on the headers, and he didi it quite clean. Thats the spirit :)

Conflits in world.cc are a MESS: fix it

File size: 1.0 KB
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
[3605]13#include "what realy has to be included"
14#include "base_object.h"
[1853]15
[3605]16// FORWARD DEFINITION \\
17class someClassWeNeed;
18
19
[3245]20/*class Test;*/ /* forward definition of class Test (without including it here!)*/
[2036]21
[3329]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*/
[3365]26class ProtoClass : public BaseObject {
[1853]27
[1904]28 public:
[3605]29  ProtoClass();
30  virtual ~ProtoClass();
[1853]31
[3245]32  bool doNonSense (int nothing);
33
34 private:
[3329]35  int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
[3245]36
[1853]37};
38
[3224]39#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.