1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +03:00

0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic

Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
This commit is contained in:
abv
2015-12-04 14:15:06 +03:00
parent f5f4ebd07b
commit 92efcf78a6
4556 changed files with 7149 additions and 2882 deletions

View File

@@ -380,7 +380,7 @@ void CAnimationDoc::OnFileLoadgrid()
CString C = dlg.GetPathName();
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
Handle_Geom_BSplineSurface mySurface;
Handle(Geom_BSplineSurface) mySurface;
if(grid2surf(C,mySurface ))
{

View File

@@ -71,11 +71,11 @@ protected:
DECLARE_MESSAGE_MAP()
private:
Handle_AIS_Shape myAisCrankArm ;
Handle_AIS_Shape myAisCylinderHead ;
Handle_AIS_Shape myAisPropeller ;
Handle_AIS_Shape myAisPiston ;
Handle_AIS_Shape myAisEngineBlock ;
Handle(AIS_Shape) myAisCrankArm ;
Handle(AIS_Shape) myAisCylinderHead ;
Handle(AIS_Shape) myAisPropeller ;
Handle(AIS_Shape) myAisPiston ;
Handle(AIS_Shape) myAisEngineBlock ;
Standard_Real myDeviation;
Standard_Integer myAngle;

View File

@@ -126,9 +126,9 @@ protected:
DECLARE_MESSAGE_MAP()
private:
Handle_V3d_View myView;
Handle(V3d_View) myView;
public:
Handle_V3d_View& GetView() { return myView;};
Handle(V3d_View)& GetView() { return myView;};
void DisplayTuneDialog();
private:
Standard_Integer myXmin;