OpenLexocad  27.1
PythonElement.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 #include <memory>
6 
7 FORWARD_DECL(App, BuildingElementProxy)
8 
9 namespace OpenLxApp
10 {
11 class LX_OPENLXAPP_EXPORT PythonElement : public BuildingElementProxy
12 {
13  PROXY_HEADER(PythonElement, App::BuildingElementProxy, IFCPYTHONELEMENT)
14 
15  virtual ~PythonElement() = default;
16 
17 protected:
18  PythonElement() = default;
19 };
20 }
#define PROXY_HEADER(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:146
Definition: ActiveScript.h:7
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
Definition: PythonElement.h:11
The BuildingElementProxy is a proxy definition that provides the same functionality as subtypes of Bu...
Definition: BuildingElementProxy.h:34