OpenLexocad  28.0
Plate.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, Plate)
7 
8 namespace OpenLxApp
9 {
18 class LX_OPENLXAPP_EXPORT Plate : public Element
19 {
20  PROXY_HEADER(Plate, App::Plate, IFCPLATE)
21 
22 public:
23  enum class PlateTypeEnum
24  {
25  CURTAIN_PANEL,
26  SHEET,
27  USERDEFINED,
28  NOTDEFINED
29  };
30 
33 
34  virtual ~Plate(void);
35 
36 protected:
37  Plate() {}
38 };
39 
40 } // namespace OpenLxApp
OpenLxApp::Plate::setPredefinedType
void setPredefinedType(PlateTypeEnum aType)
OpenLxApp
Definition: ActiveScript.h:10
Element.h
FORWARD_DECL
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
OpenLxApp::Plate::~Plate
virtual ~Plate(void)
OpenLxApp::Plate::PlateTypeEnum
PlateTypeEnum
Definition: Plate.h:24
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::Plate::Plate
Plate()
Definition: Plate.h:37
OpenLxApp::Plate::getPredefinedType
PlateTypeEnum getPredefinedType() const
OpenLxApp::Plate
An Plate is a planar and often flat part with constant thickness. A plate may carry loads between or ...
Definition: Plate.h:19
PROXY_HEADER
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146