OpenLexocad  27.0
Pile.h
Go to the documentation of this file.
1 #pragma once
2 #include <OpenLxApp/Element.h>
4 
5 #include <memory>
6 
7 FORWARD_DECL(App, Pile)
8 
9 namespace OpenLxApp
10 {
20 {
21  PROXY_HEADER(Pile, App::Pile, IFCPILE)
22 
23 public:
24  enum class PileTypeEnum
25  {
26  BORED,
27  DRIVEN,
28  JETGROUTING,
29  COHESION,
30  FRICTION,
31  SUPPORT,
32  USERDEFINED,
33  NOTDEFINED
34  };
35 
36  void setPredefinedType(PileTypeEnum aType);
37  PileTypeEnum getPredefinedType() const;
38 
39  virtual ~Pile(void);
40 
41 
42 protected:
43  Pile() {}
44 };
45 
46 } // namespace OpenLxApp
An element is a generalization of all components that make up an AEC product. Those elements can be l...
Definition: Element.h:40
pile is a slender timber, concrete, or steel structural element, driven, jetted, or otherwise embedde...
Definition: Pile.h:19
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
PileTypeEnum
Definition: Pile.h:24
Pile()
Definition: Pile.h:43
#define FORWARD_DECL(x, y)
Definition: Globals.h:96