OpenLexocad  27.1
DiscreteAccessory.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, DiscreteAccessory)
7 
8 
13 namespace OpenLxApp
14 {
21 class LX_OPENLXAPP_EXPORT DiscreteAccessory : public Element
22 {
23  PROXY_HEADER(DiscreteAccessory, App::DiscreteAccessory, IFCDISCRETEACCESSORY)
24 
25 public:
26  //enum class DiscreteAccessoryTypeEnum
27  //{
28  // ANCHORPLATE, // An accessory consisting of a steel plate, shear stud connectors or welded - on rebar which is embedded into the surface of a concrete element so that other elements can be welded or bolted onto it later.
29  // BRACKET, // An L - shaped or similarly shaped accessory attached in a corner between elements to hold them together or to carry a secondary element.
30  // SHOE, // A column shoe or a beam shoe(beam hanger) used to support or secure an element.
31  // EXPANSION_JOINT_DEVICE, // Assembly connection element between construction elements to allow for thermic differential expansions.
32  // USERDEFINED, // User - defined accessory.
33  // NOTDEFINED // Undefined accessory.
34  //};
35 
36  //void setPredefinedType(DiscreteAccessoryTypeEnum aType);
37  //DiscreteAccessoryTypeEnum getPredefinedType() const;
38 
39  virtual ~DiscreteAccessory(void);
40 
41 
42 
43 
44 protected:
46 };
47 
48 } // 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
A discrete accessory is a representation of different kinds of accessories included in or added to el...
Definition: DiscreteAccessory.h:21
Definition: ActiveScript.h:7
DiscreteAccessory()
Definition: DiscreteAccessory.h:45
#define FORWARD_DECL(x, y)
Definition: Globals.h:93