Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 8, 2005, 12:54:23 AM (20 years ago)
Author:
bensch
Message:

orxonox/branches: added new branche convention for some showing stuff at the convention

Location:
orxonox/branches/convention
Files:
2 copied

Legend:

Unmodified
Added
Removed
  • orxonox/branches/convention/src/world_entities/test_mat.h

    r3752 r3756  
    11/*!
    2     \file proto_class.h
     2    \file test_mat.h
    33    \brief Definition of the proto class template, used quickly start work
    44    \todo Example: this shows how to use simply add a Marker that here has to be done something.
     
    88*/
    99
    10 #ifndef _PROTO_CLASS_H
    11 #define _PROTO_CLASS_H
     10#ifndef _TEST_MAT_H
     11#define _TEST_MAT_H
    1212
    13 #include "what realy has to be included"
    14 #include "base_object.h"
     13#include "world_entity.h"
    1514
    16 // FORWARD DEFINITION \\
    17 class someClassWeNeed;
    18 
     15// FORWARD DEFINITION
     16class Model;
     17class Material;
    1918
    2019/*class Test;*/ /* forward definition of class Test (without including it here!)*/
     
    2423   here can be some longer description of this class
    2524*/
    26 class ProtoClass : public BaseObject {
     25class TestMat : public WorldEntity
     26{
    2727
    2828 public:
    29   ProtoClass();
    30   virtual ~ProtoClass();
     29  TestMat();
     30  virtual ~TestMat();
    3131
    32   bool doNonSense (int nothing);
     32  void enable();
     33
     34  virtual void draw();
     35
    3336
    3437 private:
    35   int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
     38  Model* model1,* model2,* model3,* model4;
     39  Material* mat1, *mat2, *mat3, *mat4;
     40 
     41  bool enabled;
    3642
    3743};
    3844
    39 #endif /* _PROTO_CLASS_H */
     45#endif /* _TEST_MAT_H */
Note: See TracChangeset for help on using the changeset viewer.