Skip to content

Commit ac19698

Browse files
committed
Move remaining stepcore headers
1 parent b36b78f commit ac19698

57 files changed

Lines changed: 89 additions & 109 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

include/core/CMakeLists.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ set(CORE_HDRS
3636
sdaiSelect.h
3737
selectTypeDescriptor.h
3838
SingleLinkList.h
39-
# STEPaggregate.h
40-
# STEPaggrBinary.h
41-
# STEPaggrEntity.h
42-
# STEPaggrEnum.h
43-
# STEPaggrGeneric.h
44-
# STEPaggrInt.h
45-
# STEPaggrReal.h
46-
# STEPaggrSelect.h
47-
# STEPaggrString.h
48-
# STEPattribute.h
49-
# STEPattributeList.h
50-
# STEPcomplex.h
51-
# STEPinvAttrList.h
52-
# STEPundefined.h
39+
STEPaggregate.h
40+
STEPaggrBinary.h
41+
STEPaggrEntity.h
42+
STEPaggrEnum.h
43+
STEPaggrGeneric.h
44+
STEPaggrInt.h
45+
STEPaggrReal.h
46+
STEPaggrSelect.h
47+
STEPaggrString.h
48+
STEPattribute.h
49+
STEPattributeList.h
50+
STEPcomplex.h
51+
STEPinvAttrList.h
52+
STEPundefined.h
5353
stringTypeDescriptor.h
5454
SubSuperIterators.h
5555
typeDescriptor.h
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRBINARY_H
22
#define STEPAGGRBINARY_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
/** \file STEPaggrBinary.h
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* classes EntityAggregate, EntityNode
66
*/
77

8-
#include "STEPaggregate.h"
8+
#include "core/STEPaggregate.h"
99
#include <sc_export.h>
1010

1111
class SC_CORE_EXPORT EntityAggregate : public STEPaggregate {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRENUM_H
22
#define STEPAGGRENUM_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include "sc_export.h"
66
/** \file StepaggrEnum.h
77
* classes EnumAggregate, LOGICALS, BOOLEANS, EnumNode
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRGENERIC_H
22
#define STEPAGGRGENERIC_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
/** \file STEPaggrGeneric.h
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRINT_H
22
#define STEPAGGRINT_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
class SC_CORE_EXPORT IntAggregate : public STEPaggregate {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRREAL_H
22
#define STEPAGGRREAL_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
class SC_CORE_EXPORT RealAggregate : public STEPaggregate {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRSELECT_H
22
#define STEPAGGRSELECT_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
/** \file STEPaggrSelect.h
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef STEPAGGRSTRING_H
22
#define STEPAGGRSTRING_H
33

4-
#include "STEPaggregate.h"
4+
#include "core/STEPaggregate.h"
55
#include <sc_export.h>
66

77
/** \file STEPaggrString.h
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TypeDescriptor;
2121
#include "core/SingleLinkList.h"
2222
#include "core/baseType.h"
2323
#include "core/sdai.h"
24-
#include <STEPundefined.h>
24+
#include "core/STEPundefined.h"
2525
#include <string>
2626

2727
#define AGGR_NULL &NilSTEPaggregate
@@ -110,14 +110,14 @@ class SC_CORE_EXPORT STEPnode : public SingleLinkNode {
110110
};
111111
typedef STEPnode * STEPnodeH;
112112

113-
#include "STEPaggrGeneric.h"
114-
#include "STEPaggrEntity.h"
115-
#include "STEPaggrSelect.h"
116-
#include "STEPaggrString.h"
117-
#include "STEPaggrBinary.h"
118-
#include "STEPaggrEnum.h"
119-
#include "STEPaggrReal.h"
120-
#include "STEPaggrInt.h"
113+
#include "core/STEPaggrGeneric.h"
114+
#include "core/STEPaggrEntity.h"
115+
#include "core/STEPaggrSelect.h"
116+
#include "core/STEPaggrString.h"
117+
#include "core/STEPaggrBinary.h"
118+
#include "core/STEPaggrEnum.h"
119+
#include "core/STEPaggrReal.h"
120+
#include "core/STEPaggrInt.h"
121121

122122
/******************************************************************
123123
** FIXME The following classes are currently stubs

0 commit comments

Comments
 (0)