OpenLexocad  27.1
CompositeCurveSegment.h
Go to the documentation of this file.
1 #pragma once
2 
4 #include <OpenLxApp/Geometry.h>
5 
6 FORWARD_DECL(Part, CompositeCurveSegment)
7 
8 namespace OpenLxApp
9 {
21 class LX_OPENLXAPP_EXPORT CompositeCurveSegment : public Geometry
22 {
23  PROXY_HEADER(CompositeCurveSegment, Part::CompositeCurveSegment, IFCCOMPOSITECURVESEGMENT)
24 
25  DECL_PROPERTY(CompositeCurveSegment, SameSense, bool)
26 public:
27  ~CompositeCurveSegment(void);
28 
29  void setParentCurve(std::shared_ptr<BoundedCurve> boundedCurve);
30  std::shared_ptr<BoundedCurve> getParentCurve() const;
31 
32 private:
33  CompositeCurveSegment(void) {}
34 };
35 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
A composite curve segment is a bounded curve together with transition information which is used to co...
Definition: CompositeCurveSegment.h:21
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:23
Definition: ActiveScript.h:7
#define DECL_PROPERTY(_class_, _name_, _type_)
DECL_PROPERTY and DEFINE_PROPERTY are macros used for mapping between the properties of Lexocad objec...
Definition: Globals.h:242
#define FORWARD_DECL(x, y)
Definition: Globals.h:93