Ignore:
Timestamp:
02/28/07 19:38:47 (17 years ago)
Author:
mattausch
Message:

removed using namespace std from .h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/common.h

    r2123 r2176  
    2020#include <fstream> 
    2121#include <limits.h> 
    22  
    23 using namespace std; 
    2422 
    2523 
     
    253251// This routine is located in main.cpp, for lack of a better place. 
    254252// ------------------------------------------------------------------- 
    255 void indent(ostream &app, int ind); 
     253void indent(std::ostream &app, int ind); 
    256254 
    257255// --------------------------------------------------------- 
     
    335333 
    336334// manipulator 
    337 inline ostream &DEBUGINFO( ostream &s ) { 
    338   return s<<"FILE "<<__FILE__<<",LINE "<<__LINE__<<endl; 
     335inline std::ostream &DEBUGINFO( std::ostream &s ) { 
     336  return s<<"FILE "<<__FILE__<<",LINE "<<__LINE__<<std::endl; 
    339337} 
    340338 
     
    492490   
    493491// debug stream 
    494 extern ofstream Debug; 
     492extern std::ofstream Debug; 
    495493 
    496494 
Note: See TracChangeset for help on using the changeset viewer.