OpenLexocad  27.1
ProfileDef.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/DocObject.h>
4 #include <OpenLxApp/Globals.h>
5 
9 namespace Part
10 {
11 class ProfileDef;
12 }
13 
14 namespace OpenLxApp
15 {
27 class LX_OPENLXAPP_EXPORT ProfileDef : public DocObject
28 {
29  PROXY_HEADER_ABSTRACT(ProfileDef, Part::ProfileDef, IFCPROFILEDEF)
30 
32 public:
33  virtual ~ProfileDef(void);
34 
35 protected:
36  ProfileDef(void) {}
37 };
38 } // namespace OpenLxApp
DocObject is the base class of all persistent objects. The DocObject belongs to exactly one Document.
Definition: DocObject.h:25
ProfileDef(void)
Definition: ProfileDef.h:36
A Utf-16 (windows) or ucs4 (unix) encoded string class.
Definition: String.h:23
#define PROXY_HEADER_ABSTRACT(_openlexocadclass_, _corelexocadclass_, _type_)
Definition: Globals.h:137
Definition: ActiveScript.h:7
#define DECL_PROPERTY(_class_, _name_, _type_)
DECL_PROPERTY and DEFINE_PROPERTY are macros used for mapping between the properties of Lexocad objec...
Definition: Globals.h:242
ProfileDef is the supertype of all definitions of standard and arbitrary profiles....
Definition: ProfileDef.h:27