OpenLexocad  27.1
BuildingElementProxy.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, BuildingElementProxy)
7 
8 namespace OpenLxApp
9 {
34 class LX_OPENLXAPP_EXPORT BuildingElementProxy : public Element
35 {
36  PROXY_HEADER(BuildingElementProxy, App::BuildingElementProxy, IFCBUILDINGELEMENTPROXY)
37 
38 public:
40  {
41  COMPLEX,
42  ELEMENT,
43  PARTIAL,
44  PROVISIONFORVOID,
45  USERDEFINED,
46  NOTDEFINED
47  };
48 
49  void setPredefinedType(BuildingElementProxyTypeEnum aType);
50  BuildingElementProxyTypeEnum getPredefinedType() const;
51 
52  virtual ~BuildingElementProxy(void);
53 
54 
55 protected:
57 };
58 
59 } // 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
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
BuildingElementProxy()
Definition: BuildingElementProxy.h:56
BuildingElementProxyTypeEnum
Definition: BuildingElementProxy.h:39
The BuildingElementProxy is a proxy definition that provides the same functionality as subtypes of Bu...
Definition: BuildingElementProxy.h:34