OpenLexocad  27.1
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 
31  void setPredefinedType(PlateTypeEnum aType);
32  PlateTypeEnum getPredefinedType() const;
33 
34  virtual ~Plate(void);
35 
36 protected:
37  Plate() {}
38 };
39 
40 } // 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
Plate()
Definition: Plate.h:37
PlateTypeEnum
Definition: Plate.h:23
Definition: ActiveScript.h:7
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
An Plate is a planar and often flat part with constant thickness. A plate may carry loads between or ...
Definition: Plate.h:18