OpenLexocad  27.0
Railing.h
Go to the documentation of this file.
1 #pragma once
2 #include <OpenLxApp/Element.h>
4 
5 #include <memory>
6 
7 FORWARD_DECL(App, Railing)
8 
9 namespace OpenLxApp
10 {
20 {
21  PROXY_HEADER(Railing, App::Railing, IFCRAILING)
22 
23 public:
24  enum class RailingTypeEnum
25  {
26  HANDRAIL,
27  GUARDRAIL,
28  BALUSTRADE,
29  USERDEFINED,
30  NOTDEFINED
31  };
32 
33  void setPredefinedType(RailingTypeEnum aType);
34  RailingTypeEnum getPredefinedType() const;
35 
36  virtual ~Railing(void);
37 
38 
39 protected:
40  Railing() {}
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:40
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
RailingTypeEnum
Definition: Railing.h:24
Railing()
Definition: Railing.h:40
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
The railing is a frame assembly adjacent to human circulation spaces and at some space boundaries whe...
Definition: Railing.h:19