Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9357 in orxonox.OLD for branches/proxy/src/util/animation


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

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

Location:
branches/proxy/src/util/animation
Files:
2 edited

Legend:

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

    r5115 r9357  
    2525#include "p_node.h"
    2626
    27 using namespace std;
     27
    2828
    2929/**
  • 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.