OpenLexocad  27.1
RampFlight.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Element.h>
4 
5 #include <memory>
6 
7 FORWARD_DECL(App, RampFlight)
8 
9 namespace OpenLxApp
10 {
20 class LX_OPENLXAPP_EXPORT RampFlight : public Element
21 {
22  PROXY_HEADER(RampFlight, App::RampFlight, IFCRAMPFLIGHT)
23 
24 public:
25  enum class RampFlightTypeEnum
26  {
27  STRAIGHT,
28  SPIRAL,
29  USERDEFINED,
30  NOTDEFINED
31  };
32 
33  void setPredefinedType(RampFlightTypeEnum aType);
34  RampFlightTypeEnum getPredefinedType() const;
35 
36  virtual ~RampFlight(void);
37 
38 
39 protected:
41 };
42 
43 } // namespace OpenLxApp
An element is a generalization of all components that make up an AEC product. Those elements can be l...
Definition: Element.h:29
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
Definition: ActiveScript.h:7
RampFlightTypeEnum
Definition: RampFlight.h:25
RampFlight()
Definition: RampFlight.h:40
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
A ramp comprises a single inclined segment, or several inclined segments that are connected by a hori...
Definition: RampFlight.h:20