OpenLexocad  27.1
BooleanClippingResult.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Geometry.h>
4 
5 
6 
7 
8 FORWARD_DECL(Part, Cut)
9 
10 
11 namespace OpenLxApp
12 {
20 class LX_OPENLXAPP_EXPORT BooleanClippingResult : public Geometry
21 {
22  PROXY_HEADER(BooleanClippingResult, Part::Cut, IFCBOOLEANCLIPPINGRESULT)
23 
24 public:
25  ~BooleanClippingResult(void);
26 
28  void setTool(std::shared_ptr<Geometry> toolGeo);
29  std::shared_ptr<Geometry> getTool() const;
31  void setBlank(std::shared_ptr<Geometry> blankGeo);
32  std::shared_ptr<Geometry> getBlank() const;
33 
34 private:
35  BooleanClippingResult(void) {}
36 };
37 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:23
Definition: ActiveScript.h:7
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
Boolean difference / cut operation.
Definition: BooleanClippingResult.h:20