OpenLexocad  28.0
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 
36 
37  virtual ~Window(void);
38 
39 protected:
40  Window() {}
41 };
42 
43 } // namespace OpenLxApp
OpenLxApp
Definition: ActiveScript.h:10
OpenLxApp::Window::getPredefinedType
WindowTypeEnum getPredefinedType() const
Element.h
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::Window::~Window
virtual ~Window(void)
OpenLxApp::Window::Window
Window()
Definition: Window.h:40
OpenLxApp::Element
An element is a generalization of all components that make up an AEC product. Those elements can be l...
Definition: Element.h:30
OpenLxApp::Window::WindowTypeEnum
WindowTypeEnum
Definition: Window.h:26
OpenLxApp::Window::setPredefinedType
void setPredefinedType(WindowTypeEnum aType)
PROXY_HEADER
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
OpenLxApp::Window
The window is a building element that is predominately used to provide natural light and fresh air....
Definition: Window.h:21