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/story_entities/campaign_data.cc

    r7370 r9357  
    2323
    2424
    25 using namespace std;
     25
    2626
    2727
     
    103103  int                            nextStoryID;
    104104  int                            storyID;
    105   list<StoryEntity*>::iterator   it;
     105  std::list<StoryEntity*>::iterator   it;
    106106
    107107  nextStoryID = 0;
     
    124124  int                            nextStoryID;
    125125  int                            storyID;
    126   list<StoryEntity*>::iterator   it;
     126  std::list<StoryEntity*>::iterator   it;
    127127
    128128  nextStoryID = this->currentEntity->getNextStoryID();
     
    145145StoryEntity* CampaignData::getLevel(int storyID)
    146146{
    147   list<StoryEntity*>::iterator   it;
     147  std::list<StoryEntity*>::iterator   it;
    148148  for( it = this->storyEntities.begin(); it != this->storyEntities.end(); it++)
    149149  {
Note: See TracChangeset for help on using the changeset viewer.