OpenLexocad  28.0
Footing.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, Footing)
7 
8 namespace OpenLxApp
9 {
17 class LX_OPENLXAPP_EXPORT Footing : public Element
18 {
19  PROXY_HEADER(Footing, App::Footing, IFCFOOTING)
20 
21 public:
22  enum class FootingTypeEnum
23  {
24  CAISSON_FOUNDATION,
25  FOOTING_BEAM,
26  PAD_FOOTING,
27  PILE_CAP,
28  STRIP_FOOTING,
29  USERDEFINED,
30  NOTDEFINED
31  };
32 
35 
36  virtual ~Footing(void);
37 
38 
39 protected:
40  Footing() {}
41 };
42 
43 } // namespace OpenLxApp
OpenLxApp
Definition: ActiveScript.h:10
Element.h
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::Footing::setPredefinedType
void setPredefinedType(FootingTypeEnum aType)
OpenLxApp::Footing::~Footing
virtual ~Footing(void)
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::Footing::Footing
Footing()
Definition: Footing.h:40
OpenLxApp::Footing
A footing is a part of the foundation of a structure that spreads and transmits the load to the soil....
Definition: Footing.h:18
OpenLxApp::Footing::getPredefinedType
FootingTypeEnum getPredefinedType() const
OpenLxApp::Footing::FootingTypeEnum
FootingTypeEnum
Definition: Footing.h:23
PROXY_HEADER
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146