OpenLexocad  27.0
Column.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, Column)
8 
9 namespace OpenLxApp
10 {
21 {
22  PROXY_HEADER(Column, App::Column, IFCCOLUMN)
23 
24 public:
25  enum class ColumnTypeEnum
26  {
27  COLUMN,
28  PILASTER,
29  USERDEFINED,
30  NOTDEFINED
31  };
32 
33  void setPredefinedType(ColumnTypeEnum aType);
34  ColumnTypeEnum getPredefinedType() const;
35 
36  virtual ~Column(void);
37 
38 protected:
39  Column() {}
40 };
41 
42 } // 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
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
A Column is a vertical structural member which often is aligned with a structural grid intersection....
Definition: Column.h:20
ColumnTypeEnum
Definition: Column.h:25
#define FORWARD_DECL(x, y)
Definition: Globals.h:96
Column()
Definition: Column.h:39