mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-29 10:50:34 +05:00
Windows build, fix errors
This commit is contained in:
parent
ac0ffa0a64
commit
79fe25c5be
@ -1174,7 +1174,7 @@ namespace SMESH{
|
|||||||
virtual SMDSAbs_ElementType GetType() const;
|
virtual SMDSAbs_ElementType GetType() const;
|
||||||
|
|
||||||
virtual void SetMesh( const SMDS_Mesh* theMesh );
|
virtual void SetMesh( const SMDS_Mesh* theMesh );
|
||||||
virtual bool IsSatisfy( smIdType theElementId );
|
virtual bool IsSatisfy( long theElementId );
|
||||||
|
|
||||||
//const std::set<long>& GetDomainIDs() const { return myOkIDs; }
|
//const std::set<long>& GetDomainIDs() const { return myOkIDs; }
|
||||||
|
|
||||||
|
@ -2095,7 +2095,7 @@ void SMESH_Mesh_i::ReplaceShape(GEOM::GEOM_Object_ptr theNewGeom)
|
|||||||
TRange & lastRange = ranges.back();
|
TRange & lastRange = ranges.back();
|
||||||
if ( lastRange.shapeID != shapeID ||
|
if ( lastRange.shapeID != shapeID ||
|
||||||
lastRange.toID != elemID )
|
lastRange.toID != elemID )
|
||||||
ranges.push_back( TRange{ shapeID, elemID, elemID + 1 });
|
ranges.push_back( TRange{ shapeID, FromIdType<int>(elemID), FromIdType<int>(elemID + 1) });
|
||||||
else
|
else
|
||||||
lastRange.toID = elemID + 1;
|
lastRange.toID = elemID + 1;
|
||||||
|
|
||||||
|
@ -139,6 +139,13 @@ namespace SMESH
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TPythonDump&
|
||||||
|
TPythonDump::
|
||||||
|
operator<<(SMESH::smIdType theArg){
|
||||||
|
myStream<<theArg;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
TPythonDump&
|
TPythonDump&
|
||||||
TPythonDump::
|
TPythonDump::
|
||||||
operator<<(double theArg){
|
operator<<(double theArg){
|
||||||
|
@ -134,6 +134,9 @@ namespace SMESH
|
|||||||
TPythonDump&
|
TPythonDump&
|
||||||
operator<<(int theArg);
|
operator<<(int theArg);
|
||||||
|
|
||||||
|
TPythonDump&
|
||||||
|
operator<<(SMESH::smIdType theArg);
|
||||||
|
|
||||||
TPythonDump&
|
TPythonDump&
|
||||||
operator<<(double theArg);
|
operator<<(double theArg);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user