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:
@@ -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 ))
|
||||
{
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user