+ Replace OCC_HEX_VERSION with OCC_VERSION_HEX

This commit is contained in:
wmayer
2014-07-18 14:51:54 +02:00
parent c4bd838c55
commit 80cc2e4710
5 changed files with 9 additions and 15 deletions

View File

@@ -183,7 +183,7 @@ const char* BRepBuilderAPI_FaceErrorText(BRepBuilderAPI_FaceError et)
return "Curve projection failed";
case BRepBuilderAPI_ParametersOutOfRange:
return "Parameters out of range";
#if OCC_HEX_VERSION < 0x060500
#if OCC_VERSION_HEX < 0x060500
case BRepBuilderAPI_SurfaceNotC2:
return "Surface not C2-continous";
#endif
@@ -620,16 +620,16 @@ void TopoShape::importBrep(const char *FileName)
// read brep-file
BRep_Builder aBuilder;
TopoDS_Shape aShape;
#if OCC_HEX_VERSION >= 0x060300
#if OCC_VERSION_HEX >= 0x060300
Handle_Message_ProgressIndicator pi = new ProgressIndicator(100);
pi->NewScope(100, "Reading BREP file...");
pi->Show();
QString fn = QString::fromUtf8(FileName);
BRepTools::Read(aShape,(const char*)fn.toLocal8Bit(),aBuilder,pi);
pi->EndScope();
#else
#else
BRepTools::Read(aShape,(const Standard_CString)FileName,aBuilder);
#endif
#endif
this->_Shape = aShape;
}
catch (Standard_Failure) {
@@ -644,7 +644,7 @@ void TopoShape::importBrep(std::istream& str)
// read brep-file
BRep_Builder aBuilder;
TopoDS_Shape aShape;
#if OCC_HEX_VERSION >= 0x060300
#if OCC_VERSION_HEX >= 0x060300
Handle_Message_ProgressIndicator pi = new ProgressIndicator(100);
pi->NewScope(100, "Reading BREP file...");
pi->Show();