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/lib/graphics/importer/bsp_file.cc

    r9025 r9357  
    4040#include <vector>
    4141
    42 using namespace std;
     42
    4343
    4444
     
    9696  if (stat( name , &results) == 0) {
    9797    PRINTF(0)("BSP FILE: Datei %s gefunden. \n", name);
    98     ifstream bspFile (name, ios::in | ios::binary);
     98    std::ifstream bspFile (name, std::ios::in | std::ios::binary);
    9999    bspFile.read(this->header, 260);
    100100    PRINTF(0)("BSP FILE: BSPVersion: %i. \n", ((int *)(header) )[1]);
Note: See TracChangeset for help on using the changeset viewer.