Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3399 in orxonox.OLD for orxonox/branches/nico/src/proto_class.h


Ignore:
Timestamp:
Feb 6, 2005, 11:27:25 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/nico: merged trunk into branches/nico
merged with command:
svn merge ../trunk/ nico/ -r 3238:HEAD
resolved conflict in favor of branches/nico.

Location:
orxonox/branches/nico
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/nico

    • Property svn:externals set to
  • orxonox/branches/nico/src/proto_class.h

    r3238 r3399  
     1/*!
     2    \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.
     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.
     8*/
    19
    210#ifndef _PROTO_CLASS_H
    311#define _PROTO_CLASS_H
    412
    5 #include "data_tank.h"
     13#include "stdincl.h"
    614
     15/*class Test;*/ /* forward definition of class Test (without including it here!)*/
    716
    8 class ProtoClass {
     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*/
     21class ProtoClass : public BaseObject {
    922
    1023 public:
     
    1225  ~ProtoClass ();
    1326
     27  bool doNonSense (int nothing);
     28
     29 private:
     30  int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
     31
    1432};
    1533
Note: See TracChangeset for help on using the changeset viewer.