summaryrefslogtreecommitdiff
path: root/src/Blend/Blend_Debug.cxx
blob: 2d739e8e7bf2d47f89a2af4287c10fb4e6c8901b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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; }