OpenLexocad  27.1
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 
33  void setPredefinedType(FootingTypeEnum aType);
34  FootingTypeEnum getPredefinedType() const;
35 
36  virtual ~Footing(void);
37 
38 
39 protected:
40  Footing() {}
41 };
42 
43 } // 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
FootingTypeEnum
Definition: Footing.h:22
A footing is a part of the foundation of a structure that spreads and transmits the load to the soil....
Definition: Footing.h:17
Definition: ActiveScript.h:7
Footing()
Definition: Footing.h:40
#define FORWARD_DECL(x, y)
Definition: Globals.h:93