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

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

39
src/Blend/Blend_Debug.cxx Executable file
View File

@@ -0,0 +1,39 @@
// File: Blend_Debug.cxx
// Created: Mon Oct 3 10:15:31 1994
// Author: Laurent BOURESCHE
// <lbo@phylox>
#include <Standard_Boolean.hxx>
#ifndef __Blend_API
# if defined(WNT) && !defined(HAVE_NO_DLL)
# ifdef __Blend_DLL
# define __Blend_API __declspec( dllexport )
# else
# define __Blend_API __declspec( dllimport )
# endif /*__Blend_DLL*/
# else
# define __Blend_API
# endif /*WNT*/
#endif /*__Blend_API*/
//*************************************************
// recuperation des surfaces des conges approximes.
//*************************************************
static Standard_Boolean Blend_traceDRAWSECT = Standard_False;
__Blend_API extern void Blend_SettraceDRAWSECT(const Standard_Boolean b)
{ Blend_traceDRAWSECT = b; }
__Blend_API extern Standard_Boolean Blend_GettraceDRAWSECT()
{ return Blend_traceDRAWSECT; }
//*************************************************
// Contexte sans test de deflexion
//*************************************************
static Standard_Boolean Blend_contextNOTESTDEFL = Standard_False;
__Blend_API extern void Blend_SetcontextNOTESTDEFL(const Standard_Boolean b)
{ Blend_contextNOTESTDEFL = b; }
__Blend_API extern Standard_Boolean Blend_GetcontextNOTESTDEFL()
{ return Blend_contextNOTESTDEFL; }