Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 20, 2006, 2:33:37 PM (18 years ago)
Author:
bensch
Message:

orxonox/proxy: removed 'using namespace std;' everywhere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/util/animation/animation_player.cc

    r5777 r9357  
    2020#include "compiler.h"
    2121
    22 using namespace std;
     22
    2323
    2424
     
    100100  {
    101101      // iterate through all the animations and tick them.
    102     list<Animation*>::iterator anim;
     102    std::list<Animation*>::iterator anim;
    103103    for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++)
    104104    {
     
    135135Animation* AnimationPlayer::getAnimationFromBaseObject(const BaseObject* baseObject) const
    136136{
    137   list<Animation*>::const_iterator anim;
     137  std::list<Animation*>::const_iterator anim;
    138138  for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++)
    139139    if((*anim)->getBaseObject() == baseObject)
     
    156156  PRINT(0)("-Animation Information---------------+\n");
    157157  // Per ANIMATION DEBUG
    158   list<Animation*>::iterator anim;
     158  std::list<Animation*>::iterator anim;
    159159  for (anim = this->animationList.begin(); anim != this->animationList.end(); anim++)
    160160    {
Note: See TracChangeset for help on using the changeset viewer.