OpenLexocad  27.1
Window.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, Window)
8 
9 namespace OpenLxApp
10 {
20 class LX_OPENLXAPP_EXPORT Window : public Element
21 {
22  PROXY_HEADER(Window, App::Window, IFCWINDOW)
23 
24 public:
25  enum class WindowTypeEnum
26  {
27  WINDOW,
28  SKYLIGHT,
29  LIGHTDOME,
30  USERDEFINED,
31  NOTDEFINED
32  };
33 
34  void setPredefinedType(WindowTypeEnum aType);
35  WindowTypeEnum getPredefinedType() const;
36 
37  virtual ~Window(void);
38 
39 protected:
40  Window() {}
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
Window()
Definition: Window.h:40
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
Definition: ActiveScript.h:7
WindowTypeEnum
Definition: Window.h:25
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
The window is a building element that is predominately used to provide natural light and fresh air....
Definition: Window.h:20