Changeset 5405 in orxonox.OLD for trunk/src/util
- Timestamp:
- Oct 19, 2005, 1:54:37 AM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/animation/animation.h
r5062 r5405 12 12 #include "debug.h" 13 13 14 // FORWARD DE FINITION14 // FORWARD DECLARATION 15 15 16 16 //! An enumerator of Functions to describe the flow of the Animation -
trunk/src/util/animation/animation_player.h
r5039 r5405 9 9 #include "animation.h" 10 10 11 /* FORWARD DE FINITION */11 /* FORWARD DECLARATION */ 12 12 13 13 //! A AnimationPlayer, that handles the animation of all the Animations in the scene. -
trunk/src/util/resource_manager.h
r5335 r5405 23 23 #include "stdlibincl.h" 24 24 25 // FORWARD DE FINITION25 // FORWARD DECLARATION 26 26 template<class T> class tList; 27 27 -
trunk/src/util/state.h
r5039 r5405 1 1 /*! 2 2 * @file state.h 3 * Definition of the States-singletonClass3 * Definition of the States Class 4 4 */ 5 5 … … 7 7 #define _STATE_H 8 8 9 #include "base_object.h" 10 11 // FORWARD DEFINITION 9 // FORWARD DECLARATION 12 10 class PNode; 13 11 class WorldEntity; 14 12 template<class T> class tList; 13 //template<class T> class tStack; 15 14 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 */ 21 class State { 18 22 19 23 public: … … 36 40 37 41 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. 39 44 40 45 static tList<WorldEntity>* worldEntityList; //!< The List of the worldEntities 46 47 //tStack< 41 48 }; 42 49 -
trunk/src/util/track/track_node.h
r5039 r5405 14 14 #include "p_node.h" 15 15 16 /* FORWARD DE FINITION */16 /* FORWARD DECLARATION */ 17 17 class TrackManager; 18 18
Note: See TracChangeset
for help on using the changeset viewer.