0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / StepShape / StepShape_BooleanOperand.hxx
CommitLineData
42cf5bc1 1// Created on: 1995-12-01
2// Created by: EXPRESS->CDL V0.2 Translator
3// Copyright (c) 1995-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _StepShape_BooleanOperand_HeaderFile
18#define _StepShape_BooleanOperand_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <StepShape_CsgPrimitive.hxx>
25#include <Standard_Integer.hxx>
26class StepShape_SolidModel;
27class StepShape_HalfSpaceSolid;
28class StepShape_BooleanResult;
29class StepShape_CsgPrimitive;
30
31
32
33class StepShape_BooleanOperand
34{
35public:
36
37 DEFINE_STANDARD_ALLOC
38
39
40 //! Returns a BooleanOperand SelectType
41 Standard_EXPORT StepShape_BooleanOperand();
42
43 Standard_EXPORT void SetTypeOfContent (const Standard_Integer aTypeOfContent);
44
45 Standard_EXPORT Standard_Integer TypeOfContent() const;
46
47 //! returns Value as a SolidModel (Null if another
48 //! type)
49 Standard_EXPORT Handle(StepShape_SolidModel) SolidModel() const;
50
51 Standard_EXPORT void SetSolidModel (const Handle(StepShape_SolidModel)& aSolidModel);
52
53 //! returns Value as a HalfSpaceSolid (Null if
54 //! another type)
55 Standard_EXPORT Handle(StepShape_HalfSpaceSolid) HalfSpaceSolid() const;
56
57 Standard_EXPORT void SetHalfSpaceSolid (const Handle(StepShape_HalfSpaceSolid)& aHalfSpaceSolid);
58
59 //! returns Value as a CsgPrimitive (Null if another
60 //! type)
61 //! CsgPrimitive is another Select Type
62 Standard_EXPORT StepShape_CsgPrimitive CsgPrimitive() const;
63
64 Standard_EXPORT void SetCsgPrimitive (const StepShape_CsgPrimitive& aCsgPrimitive);
65
66 //! returns Value as a BooleanResult (Null if another
67 //! type)
68 Standard_EXPORT Handle(StepShape_BooleanResult) BooleanResult() const;
69
70 Standard_EXPORT void SetBooleanResult (const Handle(StepShape_BooleanResult)& aBooleanResult);
71
72
73
74
75protected:
76
77
78
79
80
81private:
82
83
84
85 Handle(StepShape_SolidModel) theSolidModel;
86 Handle(StepShape_HalfSpaceSolid) theHalfSpaceSolid;
87 StepShape_CsgPrimitive theCsgPrimitive;
88 Handle(StepShape_BooleanResult) theBooleanResult;
89 Standard_Integer theTypeOfContent;
90
91
92};
93
94
95
96
97
98
99
100#endif // _StepShape_BooleanOperand_HeaderFile