Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5405 in orxonox.OLD for trunk/src/util


Ignore:
Timestamp:
Oct 19, 2005, 1:54:37 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed definition to the right term declaration…

Location:
trunk/src/util
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/animation/animation.h

    r5062 r5405  
    1212#include "debug.h"
    1313
    14 // FORWARD DEFINITION
     14// FORWARD DECLARATION
    1515
    1616//! An enumerator of Functions to describe the flow of the Animation
  • trunk/src/util/animation/animation_player.h

    r5039 r5405  
    99#include "animation.h"
    1010
    11 /* FORWARD DEFINITION */
     11/* FORWARD DECLARATION */
    1212
    1313//! A AnimationPlayer, that handles the animation of all the Animations in the scene.
  • trunk/src/util/resource_manager.h

    r5335 r5405  
    2323#include "stdlibincl.h"
    2424
    25 // FORWARD DEFINITION
     25// FORWARD DECLARATION
    2626template<class T> class tList;
    2727
  • trunk/src/util/state.h

    r5039 r5405  
    11/*!
    22 * @file state.h
    3   *  Definition of the States-singleton Class
     3 * Definition of the States Class
    44*/
    55
     
    77#define _STATE_H
    88
    9 #include "base_object.h"
    10 
    11 // FORWARD DEFINITION
     9// FORWARD DECLARATION
    1210class PNode;
    1311class WorldEntity;
    1412template<class T> class tList;
     13//template<class T> class tStack;
    1514
    16 //! A Singleton class, that handles some states about orxonox's objects
    17 class State : public BaseObject {
     15//! handles states about orxonox's most importatn objects
     16/**
     17 * This is an abstract Class-container, not really a Class.
     18 * in this Class only static references to the most important
     19 * Objects/List/etc. are stored.
     20 */
     21class State {
    1822
    1923 public:
     
    3640
    3741  static const PNode*           camera;             //!< A reference to the camera
    38   static const PNode*           cameraTarget;       //!< a reference to the cameraTarget
     42  static const PNode*           cameraTarget;       //!< A reference to the cameraTarget
     43  static PNode*                 nullParent;         //!< A reference to the Null-PNode.
    3944
    4045  static tList<WorldEntity>*    worldEntityList;    //!< The List of the worldEntities
     46
     47  //tStack<
    4148};
    4249
  • trunk/src/util/track/track_node.h

    r5039 r5405  
    1414#include "p_node.h"
    1515
    16 /* FORWARD DEFINITION */
     16/* FORWARD DECLARATION */
    1717class TrackManager;
    1818
Note: See TracChangeset for help on using the changeset viewer.