OpenLexocad  27.0
PropertySet.h
Go to the documentation of this file.
1 #pragma once
2 
4 #include <OpenLxApp/Property.h>
5 #include <OpenLxApp/Root.h>
6 
7 #include <memory>
8 #include <vector>
9 
10 FORWARD_DECL(App, PropertySet)
11 
12 
13 
14 namespace OpenLxApp
15 {
24 {
25  PROXY_HEADER(PropertySet, App::PropertySet, IFCPROPERTYSET)
26 
27 public:
28  virtual ~PropertySet();
29 
30  std::vector<std::shared_ptr<OpenLxApp::Property>> getHasProperties() const;
31  std::vector<std::shared_ptr<OpenLxApp::PropertyEnum>> getPropertyEnums() const;
32 
33 protected:
34 };
35 
36 } // namespace OpenLxApp
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:149
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
: The PropertySet defines all dynamically extensible properties. These properties are interpreted acc...
Definition: PropertySet.h:23
Root is the base class of all BIM related entities. All BIM entities can be identified by a Globally ...
Definition: Root.h:20
#define FORWARD_DECL(x, y)
Definition: Globals.h:96