Changeset 9357 in orxonox.OLD for branches/proxy/src/util
- Timestamp:
- Jul 20, 2006, 2:33:37 PM (18 years ago)
- Location:
- branches/proxy/src/util
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/util/animation/animation3d.cc
r5115 r9357 25 25 #include "p_node.h" 26 26 27 using namespace std; 27 28 28 29 29 /** -
branches/proxy/src/util/animation/animation_player.cc
r5777 r9357 20 20 #include "compiler.h" 21 21 22 using namespace std; 22 23 23 24 24 … … 100 100 { 101 101 // iterate through all the animations and tick them. 102 list<Animation*>::iterator anim;102 std::list<Animation*>::iterator anim; 103 103 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 104 104 { … … 135 135 Animation* AnimationPlayer::getAnimationFromBaseObject(const BaseObject* baseObject) const 136 136 { 137 list<Animation*>::const_iterator anim;137 std::list<Animation*>::const_iterator anim; 138 138 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 139 139 if((*anim)->getBaseObject() == baseObject) … … 156 156 PRINT(0)("-Animation Information---------------+\n"); 157 157 // Per ANIMATION DEBUG 158 list<Animation*>::iterator anim;158 std::list<Animation*>::iterator anim; 159 159 for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++) 160 160 { -
branches/proxy/src/util/fast_factory.cc
r8350 r9357 21 21 #include <string.h> 22 22 23 using namespace std; 23 24 24 25 25 /** -
branches/proxy/src/util/game_rules.cc
r9347 r9357 27 27 28 28 29 using namespace std; 29 30 30 31 31 -
branches/proxy/src/util/kill.cc
r7486 r9357 19 19 #include "world_entity.h" 20 20 21 using namespace std;22 21 23 22 23 -
branches/proxy/src/util/kill_target.cc
r8495 r9357 21 21 #include "util/loading/load_param.h" 22 22 23 using namespace std; 23 24 24 25 25 CREATE_FACTORY(KillTarget, CL_KILL_TARGET); -
branches/proxy/src/util/mission_goal.cc
r7464 r9357 22 22 #include "util/loading/load_param.h" 23 23 24 using namespace std; 24 25 25 26 26 -
branches/proxy/src/util/multiplayer_team_deathmatch.cc
r9347 r9357 49 49 50 50 51 using namespace std; 51 52 52 53 53 -
branches/proxy/src/util/network_game_rules.cc
r9235 r9357 20 20 #include "network_game_manager.h" 21 21 22 using namespace std; 22 23 23 24 24 -
branches/proxy/src/util/object_manager.cc
r9008 r9357 26 26 #include "debug.h" 27 27 28 using namespace std; 28 29 29 SHELL_COMMAND(debug, ObjectManager, debug) 30 30 ->defaultValues("", 0); … … 117 117 { 118 118 119 list<BaseObject*>::const_iterator node;119 std::list<BaseObject*>::const_iterator node; 120 120 for (node = objectList->begin(); node != objectList->end(); node++) 121 121 if ((dynamic_cast<PNode*>(*node)->getAbsCoor() - center.getAbsCoor()).len() < radius) -
branches/proxy/src/util/singleplayer_shootemup.cc
r7488 r9357 23 23 24 24 25 using namespace std; 25 26 26 27 27 -
branches/proxy/src/util/state.cc
r8271 r9357 25 25 #endif 26 26 27 using namespace std; 27 28 28 29 29 -
branches/proxy/src/util/track/track_manager.cc
r7221 r9357 32 32 #include <stdarg.h> 33 33 34 using namespace std; 34 35 35 36 36 /** -
branches/proxy/src/util/track/track_node.cc
r6074 r9357 21 21 #include "track_manager.h" 22 22 23 using namespace std; 23 24 24 25 25 /**
Note: See TracChangeset
for help on using the changeset viewer.