mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
Redundant macros were removed. Defines _WIN32, __linux__ and LININTEL were removed from qt samples *.pro files
71 lines
2.1 KiB
C
Executable File
71 lines
2.1 KiB
C
Executable File
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
#include <afxwin.h> // MFC core and standard components
|
|
#include <afxext.h> // MFC extensions
|
|
#include <afxdisp.h> // MFC OLE automation classes
|
|
#ifndef _AFX_NO_AFXCMN_SUPPORT
|
|
#include <afxcmn.h> // MFC support for Windows Common Controls
|
|
#endif // _AFX_NO_AFXCMN_SUPPORT
|
|
|
|
#pragma warning( disable : 4244 ) // Issue warning 4244
|
|
#include "Standard_ShortReal.hxx"
|
|
#pragma warning( default : 4244 ) // Issue warning 4244
|
|
|
|
#include <Standard.hxx>
|
|
#include <AIS_InteractiveContext.hxx>
|
|
#include <AIS_Shape.hxx>
|
|
#include <V3d_Viewer.hxx>
|
|
#include <V3d_View.hxx>
|
|
#include <WNT_Window.hxx>
|
|
#include <Standard_ErrorHandler.hxx>
|
|
#include <BRepPrimAPI_MakeBox.hxx>
|
|
#include <BRepPrimAPI_MakeCylinder.hxx>
|
|
#include <BRepPrimAPI_MakeSphere.hxx>
|
|
#include <BRepBuilderAPI_MakeVertex.hxx>
|
|
#include <BRepPrimAPI_MakeCone.hxx>
|
|
#include <BRepBuilderAPI_MakeEdge.hxx>
|
|
#include <BRepBuilderAPI_MakeFace.hxx>
|
|
#include <gp_Trsf.hxx>
|
|
#include <gp_Dir.hxx>
|
|
#include <gp_Pnt.hxx>
|
|
#include <gp_Ax2.hxx>
|
|
#include <ProjLib.hxx>
|
|
#include <ElSLib.hxx>
|
|
#include <gp_Pln.hxx>
|
|
#include <V3d_Plane.hxx>
|
|
#include <gp_Trsf.hxx>
|
|
#include <UnitsAPI.hxx>
|
|
#include <BRepBuilderAPI_NurbsConvert.hxx>
|
|
#include <Aspect_PolygonOffsetMode.hxx>
|
|
#include <AIS_ListOfInteractive.hxx>
|
|
#include <AIS_ListIteratorOfListOfInteractive.hxx>
|
|
#include <BRepFilletAPI_MakeFillet.hxx>
|
|
#include <Geom_Circle.hxx>
|
|
#include <AIS_Circle.hxx>
|
|
#include <AIS_Line.hxx>
|
|
#include <Geom_Line.hxx>
|
|
#include <Prs3d_Drawer.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <Prs3d_IsoAspect.hxx>
|
|
#include <Prs3d_ShadingAspect.hxx>
|
|
#include <Geom_Surface.hxx>
|
|
#include <Geom_Plane.hxx>
|
|
#include <BRep_Tool.hxx>
|
|
|
|
#include "State.h"
|
|
|
|
#include <..\res\resource.h>
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|