From: vsr Date: Thu, 9 Dec 2010 07:44:47 +0000 (+0000) Subject: Remove debug messages X-Git-Tag: V6_2_0a2~12 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=84421926eb9fecbcf1510485d123a347baea0c2f;p=modules%2Fgeom.git Remove debug messages --- diff --git a/src/GEOMClient/GEOM_Client.cxx b/src/GEOMClient/GEOM_Client.cxx index 7e01a7a6f..c1e43f616 100644 --- a/src/GEOMClient/GEOM_Client.cxx +++ b/src/GEOMClient/GEOM_Client.cxx @@ -98,7 +98,6 @@ GEOM_Client::GEOM_Client() #else (long)getpid(); #endif - cout << "$$$ GEOM_Client::GEOM_Client() pid_client = " << pid_client << endl; } //======================================================================= @@ -121,7 +120,6 @@ GEOM_Client::GEOM_Client(const GEOM_Client& client) GEOM_Client::GEOM_Client(Engines::Container_ptr client) { pid_client = client->getPID(); - cout << "$$$ GEOM_Client::GEOM_Client(client) pid_client = " << pid_client << endl; } //======================================================================= @@ -147,15 +145,12 @@ GEOM_Client GEOM_Client::get_client() //======================================================================= Standard_Integer GEOM_Client::Find( const TCollection_AsciiString& IOR, TopoDS_Shape& S ) { - cout << "$$$ GEOM_Client::Find BEGIN this = " << this << ", _myIndexes.size() = " << _myIndexes.size() << endl; if (_myIndexes.count(IOR) != 0) { Standard_Integer i = _myIndexes[IOR]; S = myShapes.Value(i); - cout << "$$$ GEOM_Client::Find i = " << i << endl; return i; } - cout << "$$$ GEOM_Client::Find END" << endl; return 0; } @@ -183,8 +178,6 @@ void GEOM_Client::Bind( const TCollection_AsciiString& IOR, const TopoDS_Shape& myIORs.Append(IOR); myShapes.Append(S); _myIndexes[IOR] = myIORs.Length(); - cout << "$$$ !!! GEOM_Client::Bind this = " << this << ", _myIndexes.size() = " << _myIndexes.size() << endl; - cout << "$$$ !!! GEOM_Client::Bind len = " << myIORs.Length() << ", IOR = " << IOR.ToCString() << endl; } //======================================================================= @@ -193,22 +186,17 @@ void GEOM_Client::Bind( const TCollection_AsciiString& IOR, const TopoDS_Shape& //======================================================================= void GEOM_Client::RemoveShapeFromBuffer( const TCollection_AsciiString& IOR) { - cout << "$$$ GEOM_Client::RemoveShapeFromBuffer BEGIN" << endl; - cout << "$$$ GEOM_Client::RemoveShapeFromBuffer myIORs.Length() = " << myIORs.Length() << ", _myIndexes.size() = " << _myIndexes.size() << endl; if( myIORs.IsEmpty() ) return; - cout << "$$$ GEOM_Client::RemoveShapeFromBuffer 1" << endl; TopoDS_Shape S; Standard_Integer anIndex = Find( IOR, S ); if( anIndex != 0 ) { - cout << "$$$ GEOM_Client::RemoveShapeFromBuffer anIndex = " << anIndex << endl; myIORs.Remove(anIndex); myShapes.Remove(anIndex); _myIndexes.erase(IOR); _mySubShapes.erase(IOR); } - cout << "$$$ GEOM_Client::RemoveShapeFromBuffer END" << endl; } //=======================================================================