OpenLexocad  27.1
Surface.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Geometry.h>
4 
5 
6 
7 FORWARD_DECL(Part, Surface)
8 
9 namespace OpenLxApp
10 {
20 class LX_OPENLXAPP_EXPORT Surface : public Geometry
21 {
22  PROXY_HEADER_ABSTRACT(Surface, Part::Surface, IFCSURFACE)
23 
24 public:
25  virtual ~Surface(void);
26 
27 protected:
28  Surface() {}
29 };
30 } // namespace OpenLxApp
Super-class of all Geometries (aka GeometricRepresentationItems)
Definition: Geometry.h:23
#define PROXY_HEADER_ABSTRACT(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:137
Definition: ActiveScript.h:7
Surface()
Definition: Surface.h:28
A surface can be envisioned as a set of connected points in 3-dimensional space which is always local...
Definition: Surface.h:20
#define FORWARD_DECL(x, y)
Definition: Globals.h:93