OpenLexocad  27.1
CurtainWall.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, CurtainWall)
7 
8 namespace OpenLxApp
9 {
19 class LX_OPENLXAPP_EXPORT CurtainWall : public Element
20 {
21  PROXY_HEADER(CurtainWall, App::CurtainWall, IFCCURTAINWALL)
22 
23 public:
25  {
26  USERDEFINED,
27  NOTDEFINED
28  };
29 
30  void setPredefinedType(CurtainWallTypeEnum aType);
31  CurtainWallTypeEnum getPredefinedType() const;
32 
33  virtual ~CurtainWall(void);
34 
35 protected:
37 };
38 
39 } // 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
Definition: ActiveScript.h:7
A curtain wall is an exterior wall of a building which is an assembly of components,...
Definition: CurtainWall.h:19
CurtainWall()
Definition: CurtainWall.h:36
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
CurtainWallTypeEnum
Definition: CurtainWall.h:24