Mod/Sketcher/App/PreCompiled.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef __PRECOMPILED__
00025 #define __PRECOMPILED__
00026
00027 #include <FCConfig.h>
00028
00029
00030 #ifdef FC_OS_WIN32
00031 # define SketcherExport __declspec(dllexport)
00032 # define PartExport __declspec(dllimport)
00033 # define MeshExport __declspec(dllimport)
00034 #else // for Linux
00035 # define SketcherExport
00036 # define PartExport
00037 # define MeshExport
00038 #endif
00039
00040 #ifdef _PreComp_
00041
00042
00043 #include <iostream>
00044 #include <sstream>
00045 #include <stdio.h>
00046 #include <assert.h>
00047 #include <string>
00048 #include <map>
00049 #include <vector>
00050 #include <set>
00051 #include <bitset>
00052
00053 #include <Mod/Part/App/OpenCascadeAll.h>
00054 #include <Python.h>
00055
00056 #elif defined(FC_OS_WIN32)
00057 #include <windows.h>
00058 #endif // _PreComp_
00059 #endif
00060