OpenLexocad  27.1
Door.h
Go to the documentation of this file.
1 #pragma once
2 #include <OpenLxApp/Element.h>
3 
4 #include <memory>
5 
6 FORWARD_DECL(App, Door)
7 
8 namespace OpenLxApp
9 {
18 class LX_OPENLXAPP_EXPORT Door : public Element
19 {
20  PROXY_HEADER(Door, App::Door, IFCDOOR)
21 
22 public:
23  enum class DoorTypeEnum
24  {
25  DOOR,
26  GATE,
27  TRAPDOOR,
28  USERDEFINED,
29  NOTDEFINED
30  };
31 
32  void setPredefinedType(DoorTypeEnum aType);
33  DoorTypeEnum getPredefinedType() const;
34 
35  virtual ~Door(void);
36 
37 protected:
38  Door() {}
39 };
40 
41 } // 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
DoorTypeEnum
Definition: Door.h:23
Definition: ActiveScript.h:7
The door is a building element that is predominately used to provide controlled access for people and...
Definition: Door.h:18
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
Door()
Definition: Door.h:38