Added missing std::

This commit is contained in:
Robert Osfield
2003-05-24 14:26:20 +00:00
parent 5408077c3b
commit 5bfaf54292
5 changed files with 6 additions and 6 deletions

View File

@@ -73,7 +73,7 @@ int main( int argc, char **argv )
osg::Timer_t end_tick = timer.tick();
cout << "Time to load = "<<timer.delta_s(start_tick,end_tick);
std::cout << "Time to load = "<<timer.delta_s(start_tick,end_tick)<<std::endl;
// optimize the scene graph, remove rendundent nodes and state etc.
osgUtil::Optimizer optimizer;

View File

@@ -13,4 +13,4 @@
// NOTE: Update anytime the binary format changes
#define VERSION 0x01
#endif
#endif

View File

@@ -17,4 +17,4 @@ private:
}
#endif
#endif

View File

@@ -15,4 +15,4 @@ public:
}
#endif
#endif

View File

@@ -43,7 +43,7 @@ class IVEReaderWriter : public ReaderWriter
return rootNode;
}
else{
cout <<"Unknown class identification in file "<< id << endl;
std::cout <<"Unknown class identification in file "<< id << std::endl;
}
}
catch(ive::Exception e)
@@ -58,7 +58,7 @@ class IVEReaderWriter : public ReaderWriter
{
try
{
std::ofstream ostream(fileName.c_str(), ios::out | ios::binary);
std::ofstream ostream(fileName.c_str(), std::ios::out | std::ios::binary);
ive::DataOutputStream* out = new ive::DataOutputStream(&ostream);
// write ive file.
if(dynamic_cast<const osg::MatrixTransform*>(&node))