OpenLexocad  27.1
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 
29  void setPredefinedType(ChimneyTypeEnum aType);
30  ChimneyTypeEnum getPredefinedType() const;
31 
32  virtual ~Chimney(void);
33 
34 protected:
35  Chimney() {}
36 };
37 
38 } // namespace OpenLxApp
ChimneyTypeEnum
Definition: Chimney.h:23
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
Chimney()
Definition: Chimney.h:35
Definition: ActiveScript.h:7
Chimneys are typically vertical, or as near as vertical, parts of the construction of a building and ...
Definition: Chimney.h:18
#define FORWARD_DECL(x, y)
Definition: Globals.h:93