OpenLexocad  27.0
Window.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Element.h>
5 
6 #include <memory>
7 
8 FORWARD_DECL(App, Window)
9 
10 namespace OpenLxApp
11 {
22 {
23  PROXY_HEADER(Window, App::Window, IFCWINDOW)
24 
25 public:
26  enum class WindowTypeEnum
27  {
28  WINDOW,
29  SKYLIGHT,
30  LIGHTDOME,
31  USERDEFINED,
32  NOTDEFINED
33  };
34 
35  void setPredefinedType(WindowTypeEnum aType);
36  WindowTypeEnum getPredefinedType() const;
37 
38  virtual ~Window(void);
39 
40 protected:
41  Window() {}
42 };
43 
44 } // 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
Window()
Definition: Window.h:41
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
WindowTypeEnum
Definition: Window.h:26
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
The window is a building element that is predominately used to provide natural light and fresh air....
Definition: Window.h:21