Salome HOME
Remove debug messages
authorvsr <vsr@opencascade.com>
Thu, 9 Dec 2010 07:44:47 +0000 (07:44 +0000)
committervsr <vsr@opencascade.com>
Thu, 9 Dec 2010 07:44:47 +0000 (07:44 +0000)
src/GEOMClient/GEOM_Client.cxx

index 7e01a7a6f2898db231760fe44befc3f6310bf5b3..c1e43f616bbd285e59b68c10b9904107087da8d9 100644 (file)
@@ -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;
 }
 
 //=======================================================================