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/Environment.h

    r1004 r2176  
    7171  char *description; 
    7272  void *pointer; 
    73   friend ostream &operator <<(ostream &s, const COption &o) { 
     73  friend std::ostream &operator <<(std::ostream &s, const COption &o) { 
    7474    s<<o.name<<"\t"; 
    7575    if (o.abbrev) 
     
    8989    s<<"\t"; 
    9090    if (o.description) 
    91       s<<endl<<o.description; 
     91      s<<std::endl<<o.description; 
    9292    return s; 
    9393  } 
     
    184184 
    185185    /// This method is used as a help on available command line options. 
    186         virtual void PrintUsage(ostream &s) const; 
     186        virtual void PrintUsage(std::ostream &s) const; 
    187187 
    188188        virtual void SetStaticOptions(); 
Note: See TracChangeset for help on using the changeset viewer.