OpenLexocad  27.0
CompositeCurveSegment.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Core/PropertyLogical.h>
5 #include <OpenLxApp/Geometry.h>
7 
8 FORWARD_DECL(Part, CompositeCurveSegment)
9 
10 namespace OpenLxApp
11 {
24 {
25  PROXY_HEADER(CompositeCurveSegment, Part::CompositeCurveSegment, IFCCOMPOSITECURVESEGMENT)
26 
27  DECL_PROPERTY(CompositeCurveSegment, SameSense, bool)
28 public:
29  ~CompositeCurveSegment(void);
30 
31  void setParentCurve(std::shared_ptr<BoundedCurve> boundedCurve);
32  std::shared_ptr<BoundedCurve> getParentCurve() const;
33 
34 private:
35  CompositeCurveSegment(void) {}
36 };
37 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
A composite curve segment is a bounded curve together with transition information which is used to co...
Definition: CompositeCurveSegment.h:23
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:26
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
#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:245
#define FORWARD_DECL(x, y)
Definition: Globals.h:96