mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
"endl" manipulator for Message_Messenger is renamed to "Message_EndLine". The following entities from std namespace are now used with std:: explicitly specified (from Standard_Stream.hxx): std::istream,std::ostream,std::ofstream,std::ifstream,std::fstream, std::filebuf,std::streambuf,std::streampos,std::ios,std::cout,std::cerr, std::cin,std::endl,std::ends,std::flush,std::setw,std::setprecision, std::hex,std::dec.
This commit is contained in:
@@ -196,6 +196,6 @@ Standard_OStream& TDataStd_AsciiString::Dump(Standard_OStream& theOS) const
|
||||
anOS << " Name=|"<<myString<<"|";
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid << "|" <<endl;
|
||||
anOS << sguid << "|" <<std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -317,6 +317,6 @@ Standard_OStream& TDataStd_BooleanArray::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS <<endl;
|
||||
anOS <<std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -303,6 +303,6 @@ Standard_OStream& TDataStd_BooleanList::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -292,7 +292,7 @@ Standard_OStream& TDataStd_ByteArray::Dump (Standard_OStream& anOS) const
|
||||
anOS << "\nByteArray: ";
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid << endl;
|
||||
anOS << sguid << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
||||
|
@@ -46,9 +46,9 @@ TDataStd_DeltaOnModificationOfByteArray::TDataStd_DeltaOnModificationOfByteArray
|
||||
Arr2 = CurrAtt->InternalArray();
|
||||
#ifdef OCCT_DEBUG_DELTA
|
||||
if(Arr1.IsNull())
|
||||
cout <<"DeltaOnModificationOfByteArray:: Old ByteArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfByteArray:: Old ByteArray is Null" <<std::endl;
|
||||
if(Arr2.IsNull())
|
||||
cout <<"DeltaOnModificationOfByteArray:: Current ByteArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfByteArray:: Current ByteArray is Null" <<std::endl;
|
||||
#endif
|
||||
|
||||
if(Arr1.IsNull() || Arr2.IsNull()) return;
|
||||
@@ -86,7 +86,7 @@ TDataStd_DeltaOnModificationOfByteArray::TDataStd_DeltaOnModificationOfByteArray
|
||||
OldAtt->RemoveArray();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(OldAtt->InternalArray().IsNull())
|
||||
cout << "BackUp Arr is Nullified" << endl;
|
||||
std::cout << "BackUp Arr is Nullified" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -104,7 +104,7 @@ void TDataStd_DeltaOnModificationOfByteArray::Apply()
|
||||
Handle(TDataStd_ByteArray) BackAtt = Handle(TDataStd_ByteArray)::DownCast (TDFAttribute);
|
||||
if(BackAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfByteArray::Apply: OldAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfByteArray::Apply: OldAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -117,7 +117,7 @@ void TDataStd_DeltaOnModificationOfByteArray::Apply()
|
||||
|
||||
if(aCurAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfByteArray::Apply: CurAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfByteArray::Apply: CurAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -158,9 +158,9 @@ void TDataStd_DeltaOnModificationOfByteArray::Apply()
|
||||
if(!myIndxes.IsNull() && !myValues.IsNull())
|
||||
for(i = 1; i <= myIndxes->Upper();i++) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << endl;
|
||||
cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << endl;
|
||||
cout << "myValues->Value(i) = " << myValues->Value(i) << endl;
|
||||
std::cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << std::endl;
|
||||
std::cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << std::endl;
|
||||
std::cout << "myValues->Value(i) = " << myValues->Value(i) << std::endl;
|
||||
#endif
|
||||
byteArr->ChangeArray1().SetValue(myIndxes->Value(i), myValues->Value(i));
|
||||
}
|
||||
@@ -168,11 +168,11 @@ void TDataStd_DeltaOnModificationOfByteArray::Apply()
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " << Array Dump after Delta Apply >>" <<endl;
|
||||
std::cout << " << Array Dump after Delta Apply >>" <<std::endl;
|
||||
Handle(TColStd_HArray1OfByte) BArr2 = aCurAtt->InternalArray();
|
||||
for(i=BArr2->Lower(); i<=BArr2->Upper() && i<= MAXUP;i++)
|
||||
cout << BArr2->Value(i) << " ";
|
||||
cout <<endl;
|
||||
std::cout << BArr2->Value(i) << " ";
|
||||
std::cout <<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -45,9 +45,9 @@ TDataStd_DeltaOnModificationOfExtStringArray::TDataStd_DeltaOnModificationOfExtS
|
||||
Arr2 = CurrAtt->Array();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(Arr1.IsNull())
|
||||
cout <<"DeltaOnModificationOfExtStringArray:: Old IntArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfExtStringArray:: Old IntArray is Null" <<std::endl;
|
||||
if(Arr2.IsNull())
|
||||
cout <<"DeltaOnModificationOfExtStringArray:: Current IntArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfExtStringArray:: Current IntArray is Null" <<std::endl;
|
||||
#endif
|
||||
|
||||
if(Arr1.IsNull() || Arr2.IsNull()) return;
|
||||
@@ -85,7 +85,7 @@ TDataStd_DeltaOnModificationOfExtStringArray::TDataStd_DeltaOnModificationOfExtS
|
||||
OldAtt->RemoveArray();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(OldAtt->Array().IsNull())
|
||||
cout << "BackUp Arr is Nullified" << endl;
|
||||
std::cout << "BackUp Arr is Nullified" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -103,7 +103,7 @@ void TDataStd_DeltaOnModificationOfExtStringArray::Apply()
|
||||
Handle(TDataStd_ExtStringArray) BackAtt = Handle(TDataStd_ExtStringArray)::DownCast (TDFAttribute);
|
||||
if(BackAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfExtStringArray::Apply: OldAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfExtStringArray::Apply: OldAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -116,7 +116,7 @@ void TDataStd_DeltaOnModificationOfExtStringArray::Apply()
|
||||
|
||||
if(aCurAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfExtStringArray::Apply: CurAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfExtStringArray::Apply: CurAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -160,9 +160,9 @@ void TDataStd_DeltaOnModificationOfExtStringArray::Apply()
|
||||
if(!myIndxes.IsNull() && !myValues.IsNull())
|
||||
for(i = 1; i <= myIndxes->Upper();i++) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << endl;
|
||||
cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << endl;
|
||||
cout << "myValues->Value(i) = " << myValues->Value(i) << endl;
|
||||
std::cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << std::endl;
|
||||
std::cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << std::endl;
|
||||
std::cout << "myValues->Value(i) = " << myValues->Value(i) << std::endl;
|
||||
#endif
|
||||
strArr->ChangeArray1().SetValue(myIndxes->Value(i), myValues->Value(i));
|
||||
}
|
||||
@@ -171,11 +171,11 @@ void TDataStd_DeltaOnModificationOfExtStringArray::Apply()
|
||||
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " << Array Dump after Delta Apply >>" <<endl;
|
||||
std::cout << " << Array Dump after Delta Apply >>" <<std::endl;
|
||||
Handle(TColStd_HArray1OfExtendedString) aStrArr2 = aCurAtt->Array();
|
||||
for(i=aStrArr2->Lower(); i<= aStrArr2->Upper() && i<= MAXUP;i++)
|
||||
cout << aStrArr2->Value(i) << " ";
|
||||
cout <<endl;
|
||||
std::cout << aStrArr2->Value(i) << " ";
|
||||
std::cout <<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -45,9 +45,9 @@ TDataStd_DeltaOnModificationOfIntArray::TDataStd_DeltaOnModificationOfIntArray(c
|
||||
Arr2 = CurrAtt->Array();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(Arr1.IsNull())
|
||||
cout <<"DeltaOnModificationOfIntArray:: Old IntArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfIntArray:: Old IntArray is Null" <<std::endl;
|
||||
if(Arr2.IsNull())
|
||||
cout <<"DeltaOnModificationOfIntArray:: Current IntArray is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfIntArray:: Current IntArray is Null" <<std::endl;
|
||||
#endif
|
||||
|
||||
if(Arr1.IsNull() || Arr2.IsNull()) return;
|
||||
@@ -84,7 +84,7 @@ TDataStd_DeltaOnModificationOfIntArray::TDataStd_DeltaOnModificationOfIntArray(c
|
||||
OldAtt->RemoveArray();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(OldAtt->Array().IsNull())
|
||||
cout << "BackUp Arr is Nullified" << endl;
|
||||
std::cout << "BackUp Arr is Nullified" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -102,7 +102,7 @@ void TDataStd_DeltaOnModificationOfIntArray::Apply()
|
||||
Handle(TDataStd_IntegerArray) BackAtt = Handle(TDataStd_IntegerArray)::DownCast (TDFAttribute);
|
||||
if(BackAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfIntArray::Apply: OldAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfIntArray::Apply: OldAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -115,7 +115,7 @@ void TDataStd_DeltaOnModificationOfIntArray::Apply()
|
||||
|
||||
if(aCurAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfIntArray::Apply: CurAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfIntArray::Apply: CurAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -156,9 +156,9 @@ void TDataStd_DeltaOnModificationOfIntArray::Apply()
|
||||
if(!myIndxes.IsNull() && !myValues.IsNull())
|
||||
for(i = 1; i <= myIndxes->Upper();i++) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << endl;
|
||||
cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << endl;
|
||||
cout << "myValues->Value(i) = " << myValues->Value(i) << endl;
|
||||
std::cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << std::endl;
|
||||
std::cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << std::endl;
|
||||
std::cout << "myValues->Value(i) = " << myValues->Value(i) << std::endl;
|
||||
#endif
|
||||
intArr->ChangeArray1().SetValue(myIndxes->Value(i), myValues->Value(i));
|
||||
}
|
||||
@@ -166,11 +166,11 @@ void TDataStd_DeltaOnModificationOfIntArray::Apply()
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " << Array Dump after Delta Apply >>" <<endl;
|
||||
std::cout << " << Array Dump after Delta Apply >>" <<std::endl;
|
||||
Handle(TColStd_HArray1OfInteger) IntArr2 = aCurAtt->Array();
|
||||
for(i=IntArr2->Lower(); i<=IntArr2->Upper() && i <= MAXUP;i++)
|
||||
cout << IntArr2->Value(i) << " ";
|
||||
cout <<endl;
|
||||
std::cout << IntArr2->Value(i) << " ";
|
||||
std::cout <<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -46,9 +46,9 @@ TDataStd_DeltaOnModificationOfIntPackedMap::TDataStd_DeltaOnModificationOfIntPac
|
||||
aMap2 = CurrAtt->GetHMap();
|
||||
#ifdef OCCT_DEBUG_disable
|
||||
if (aMap1.IsNull())
|
||||
cout <<"DeltaOnModificationOfIntPackedMap:: Old Map is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfIntPackedMap:: Old Map is Null" <<std::endl;
|
||||
if (aMap2.IsNull())
|
||||
cout <<"DeltaOnModificationOfIntPackedMap:: Current Map is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfIntPackedMap:: Current Map is Null" <<std::endl;
|
||||
#endif
|
||||
|
||||
if (aMap1.IsNull() || aMap2.IsNull()) return;
|
||||
@@ -87,7 +87,7 @@ void TDataStd_DeltaOnModificationOfIntPackedMap::Apply()
|
||||
Handle(TDataStd_IntPackedMap) aBackAtt = Handle(TDataStd_IntPackedMap)::DownCast (aTDFAttribute);
|
||||
if(aBackAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfIntPAckedMap::Apply: OldAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfIntPAckedMap::Apply: OldAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -100,7 +100,7 @@ void TDataStd_DeltaOnModificationOfIntPackedMap::Apply()
|
||||
|
||||
if(aCurAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfIntAPckedMAp::Apply: CurAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfIntAPckedMAp::Apply: CurAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -125,11 +125,11 @@ void TDataStd_DeltaOnModificationOfIntPackedMap::Apply()
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG_disable
|
||||
cout << " << Map Dump after Delta Apply >>" <<endl;
|
||||
std::cout << " << Map Dump after Delta Apply >>" <<std::endl;
|
||||
Handle(TColStd_HPackedMapOfInteger) aIntMap = aCurAtt->GetHMap();
|
||||
TColStd_MapIteratorOfPackedMapOfInteger it(aIntMap->Map());
|
||||
for (Standard_Integer i=1;it.More() && i <= MAXUP; it.Next(), i++)
|
||||
cout << it.Key() << " ";
|
||||
cout <<endl;
|
||||
std::cout << it.Key() << " ";
|
||||
std::cout <<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
@@ -45,9 +45,9 @@ TDataStd_DeltaOnModificationOfRealArray::
|
||||
Arr2 = CurrAtt->Array();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(Arr1.IsNull())
|
||||
cout <<"DeltaOnModificationOfRealArray:: Old Array is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfRealArray:: Old Array is Null" <<std::endl;
|
||||
if(Arr2.IsNull())
|
||||
cout <<"DeltaOnModificationOfRealArray:: Current Array is Null" <<endl;
|
||||
std::cout <<"DeltaOnModificationOfRealArray:: Current Array is Null" <<std::endl;
|
||||
#endif
|
||||
|
||||
if(Arr1.IsNull() || Arr2.IsNull()) return;
|
||||
@@ -83,7 +83,7 @@ TDataStd_DeltaOnModificationOfRealArray::
|
||||
OldAtt->RemoveArray();
|
||||
#ifdef OCCT_DEBUG
|
||||
if(OldAtt->Array().IsNull())
|
||||
cout << "BackUp Arr is Nullified" << endl;
|
||||
std::cout << "BackUp Arr is Nullified" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -101,7 +101,7 @@ void TDataStd_DeltaOnModificationOfRealArray::Apply()
|
||||
Handle(TDataStd_RealArray) BackAtt = Handle(TDataStd_RealArray)::DownCast (TDFAttribute);
|
||||
if(BackAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfRealArray::Apply: OldAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfRealArray::Apply: OldAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -114,7 +114,7 @@ void TDataStd_DeltaOnModificationOfRealArray::Apply()
|
||||
|
||||
if(aCurAtt.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "DeltaOnModificationOfRealArray::Apply: CurAtt is Null" <<endl;
|
||||
std::cout << "DeltaOnModificationOfRealArray::Apply: CurAtt is Null" <<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@@ -155,9 +155,9 @@ void TDataStd_DeltaOnModificationOfRealArray::Apply()
|
||||
if(!myIndxes.IsNull() && !myValues.IsNull())
|
||||
for(i = 1; i <= myIndxes->Upper();i++) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << endl;
|
||||
cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << endl;
|
||||
cout << "myValues->Value(i) = " << myValues->Value(i) << endl;
|
||||
std::cout << "i = " << i << " myIndxes->Upper = " << myIndxes->Upper() << std::endl;
|
||||
std::cout << "myIndxes->Value(i) = " << myIndxes->Value(i) << std::endl;
|
||||
std::cout << "myValues->Value(i) = " << myValues->Value(i) << std::endl;
|
||||
#endif
|
||||
realArr->ChangeArray1().SetValue(myIndxes->Value(i), myValues->Value(i));
|
||||
}
|
||||
@@ -166,11 +166,11 @@ void TDataStd_DeltaOnModificationOfRealArray::Apply()
|
||||
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " << RealArray Dump after Delta Apply >>" <<endl;
|
||||
std::cout << " << RealArray Dump after Delta Apply >>" <<std::endl;
|
||||
Handle(TColStd_HArray1OfReal) aRArr = aCurAtt->Array();
|
||||
for(i=aRArr->Lower(); i<=aRArr->Upper() && i <= MAXUP;i++)
|
||||
cout << aRArr->Value(i) << " ";
|
||||
cout <<endl;
|
||||
std::cout << aRArr->Value(i) << " ";
|
||||
std::cout <<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -312,13 +312,13 @@ Standard_OStream& TDataStd_ExtStringArray::Dump (Standard_OStream& anOS) const
|
||||
lower = myValue->Lower();
|
||||
upper = myValue->Upper();
|
||||
for(i = lower; i<=upper; i++)
|
||||
anOS << "\t" <<myValue->Value(i)<<endl;
|
||||
anOS << "\t" <<myValue->Value(i)<<std::endl;
|
||||
}
|
||||
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
||||
|
@@ -363,6 +363,6 @@ Standard_OStream& TDataStd_ExtStringList::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -217,7 +217,7 @@ Standard_OStream& TDataStd_IntPackedMap::Dump(Standard_OStream& theOS) const
|
||||
Standard_OStream& anOS = TDF_Attribute::Dump( theOS );
|
||||
anOS << "IntPackedMap size = " << Extent();
|
||||
anOS << " Delta is " << (myIsDelta ? "ON":"OFF");
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
||||
|
@@ -316,7 +316,7 @@ Standard_OStream& TDataStd_IntegerArray::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
|
||||
// anOS <<"\nAttribute fields: ";
|
||||
// anOS << TDF_Attribute::Dump(anOS);
|
||||
|
@@ -359,6 +359,6 @@ Standard_OStream& TDataStd_IntegerList::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -189,6 +189,6 @@ Standard_OStream& TDataStd_Name::Dump (Standard_OStream& anOS) const
|
||||
anOS << " Name=|"<<myString<<"|";
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid << endl;
|
||||
anOS << sguid << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -316,7 +316,7 @@ Standard_OStream& TDataStd_RealArray::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
||||
|
@@ -357,6 +357,6 @@ Standard_OStream& TDataStd_RealList::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -327,6 +327,6 @@ Standard_OStream& TDataStd_ReferenceArray::Dump (Standard_OStream& anOS) const
|
||||
anOS << "\nReferenceArray: ";
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid << endl;
|
||||
anOS << sguid << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -380,6 +380,6 @@ Standard_OStream& TDataStd_ReferenceList::Dump (Standard_OStream& anOS) const
|
||||
Standard_Character sguid[Standard_GUID_SIZE_ALLOC];
|
||||
myID.ToCString(sguid);
|
||||
anOS << sguid;
|
||||
anOS << endl;
|
||||
anOS << std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
@@ -684,6 +684,6 @@ Standard_OStream& TDataStd_TreeNode::Dump (Standard_OStream& anOS) const
|
||||
anOS<<" Last=";
|
||||
if (!myLast->Label().IsNull()) myLast->Label().EntryDump(anOS);
|
||||
}
|
||||
anOS<<endl;
|
||||
anOS<<std::endl;
|
||||
return anOS;
|
||||
}
|
||||
|
Reference in New Issue
Block a user