Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 3269 was 3246, checked in by patrick, 20 years ago

orxonox/trunk: implemented a first header file for the Parent Node, still in hard-code development

File size: 491 bytes
RevLine 
[3245]1/*!
[3246]2    \file proto_class.h
3    \brief Definition of the proto class template, used quickly start work
[3245]4*/
[1853]5
[3245]6
[3224]7#ifndef _PROTO_CLASS_H
8#define _PROTO_CLASS_H
[1853]9
[3245]10#include "stdincl.h"
[1853]11
[3245]12/*class Test;*/ /* forward definition of class Test (without including it here!)*/
[2036]13
[1853]14class ProtoClass {
15
[1904]16 public:
[1853]17  ProtoClass ();
18  ~ProtoClass ();
19
[3245]20  bool doNonSense (int nothing);
21
22 private:
23  int nonSense;  //! doxygen tag here like this - delete this variable if you use this
24
[1853]25};
26
[3224]27#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.