OpenLexocad  28.0
Chimney.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, Chimney)
7 
8 namespace OpenLxApp
9 {
18 class LX_OPENLXAPP_EXPORT Chimney : public Element
19 {
20  PROXY_HEADER(Chimney, App::Chimney, IFCCHIMNEY)
21 
22 public:
23  enum class ChimneyTypeEnum
24  {
25  USERDEFINED,
26  NOTDEFINED
27  };
28 
31 
32  virtual ~Chimney(void);
33 
34 protected:
35  Chimney() {}
36 };
37 
38 } // namespace OpenLxApp
OpenLxApp
Definition: ActiveScript.h:10
OpenLxApp::Chimney::ChimneyTypeEnum
ChimneyTypeEnum
Definition: Chimney.h:24
Element.h
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::Chimney::~Chimney
virtual ~Chimney(void)
OpenLxApp::Chimney
Chimneys are typically vertical, or as near as vertical, parts of the construction of a building and ...
Definition: Chimney.h:19
OpenLxApp::Chimney::setPredefinedType
void setPredefinedType(ChimneyTypeEnum aType)
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::Chimney::Chimney
Chimney()
Definition: Chimney.h:35
OpenLxApp::Chimney::getPredefinedType
ChimneyTypeEnum getPredefinedType() const
PROXY_HEADER
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146