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

    r2168 r2176  
    33 
    44#include <string> 
    5 //using namespace std; 
     5// 
    66 
    77#include "Containers.h" 
     
    3131        ~SceneGraph(); 
    3232         
    33         bool Export(const string filename); 
     33        bool Export(const std::string filename); 
    3434   
    3535        int CollectObjects(ObjectContainer *instances); 
     
    4343        /** Exports binary version of the scene. 
    4444        */ 
    45         void ExportScene(const string filename); 
     45        void ExportScene(const std::string filename); 
    4646 
    4747        /** Loads binary version of the scene. 
    4848        */ 
    49         void LoadScene(const string filename); 
     49        void LoadScene(const std::string filename); 
    5050 
    5151        SceneGraphNode *GetRoot(); 
Note: See TracChangeset for help on using the changeset viewer.