OpenLexocad  27.1
TerrainElement.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Element.h>
4 
5 #include <memory>
6 
7 FORWARD_DECL(App, GeographicElement)
8 
9 namespace OpenLxApp
10 {
20 class LX_OPENLXAPP_EXPORT TerrainElement : public Element
21 {
22  PROXY_HEADER(TerrainElement, App::GeographicElement, IFCTERRAINELEMENT)
23 
24 public:
25  virtual ~TerrainElement(void);
26 
27 
28 protected:
30 };
31 
32 } // 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
An GeographicElement is a generalization of all elements within a geographical landscape....
Definition: TerrainElement.h:20
Definition: ActiveScript.h:7
#define FORWARD_DECL(x, y)
Definition: Globals.h:93
TerrainElement()
Definition: TerrainElement.h:29