Skip to content

Commit b36b78f

Browse files
committed
Need to process a few more directories
1 parent 77a43bc commit b36b78f

13 files changed

Lines changed: 30 additions & 24 deletions

File tree

include/core/create_Aggr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//typedef's for aggregate creators
55

6-
#include "sdai.h"
6+
#include "core/sdai.h"
77
#include "sc_export.h"
88

99

include/core/interfacedItem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "core/dictionaryInstance.h"
55

6-
#include "sdai.h"
6+
#include "core/sdai.h"
77

88
#include "sc_export.h"
99

include/core/uniquenessRule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "core/dictionaryInstance.h"
55

6-
#include "sdai.h"
6+
#include "core/sdai.h"
77

88
#include "sc_export.h"
99

include/core/whereRule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define WHERERULE_H
33

44
#include <string>
5-
#include "sdai.h"
5+
#include "core/sdai.h"
66
#include "core/dictionaryInstance.h"
77
#include "typeOrRuleVar.h"
88

misc/header_mv.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@
22
find . -type f -path "*/cl*" -not -path "*.git/*" -not -path "*/exp*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include \"$1\"/include \"core\/$1\"/g" {} \;
33
find . -type f -path "*/cl*" -not -path "*.git/*" -not -path "*/exp*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include <$1>/include \"core\/$1\"/g" {} \;
44

5+
find . -type f -path "*/include*" -not -path "*.git/*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include \"$1\"/include \"core\/$1\"/g" {} \;
6+
find . -type f -path "*/include*" -not -path "*.git/*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include <$1>/include \"core\/$1\"/g" {} \;
7+
8+
find . -type f -path "*/test*" -not -path "*.git/*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include \"$1\"/include \"core\/$1\"/g" {} \;
9+
find . -type f -path "*/test*" -not -path "*.git/*" -regex '.*\(c\|cc\|cpp\|cxx\|h\|hpp\)$' -exec perl -0777 -pi -e "s/include <$1>/include \"core\/$1\"/g" {} \;
10+

src/test/p21read/p21read.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
extern void SchemaInit( class Registry & );
1616
#include <STEPfile.h>
17-
#include <sdai.h>
17+
#include "core/sdai.h"
1818
#include <STEPattribute.h>
1919
#include "core/ExpDict.h"
2020
#include "core/Registry.h"

src/test/tests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "core/ExpDict.h"
2020
#include <STEPfile.h>
2121
#include <STEPattribute.h>
22-
#include <sdai.h>
22+
#include "core/sdai.h"
2323

2424
/* Stuff more or less specifically for the Example schema */
2525
/* The only program that needs this is tstatic. Since the other programs */

test/cpp/schema_specific/aggregate_bound_runtime.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
#include <STEPfile.h>
3-
#include <sdai.h>
3+
#include "core/sdai.h"
44
#include <STEPattribute.h>
5-
#include <ExpDict.h>
6-
#include <Registry.h>
5+
#include "core/ExpDict.h"
6+
#include "core/Registry.h"
77
#include <errordesc.h>
88
#include <algorithm>
99
#include <string>

test/cpp/schema_specific/attribute.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*/
55
#include "config.h"
66
#include <STEPfile.h>
7-
#include <sdai.h>
7+
#include "core/sdai.h"
88
#include <STEPattribute.h>
9-
#include <ExpDict.h>
10-
#include <Registry.h>
9+
#include "core/ExpDict.h"
10+
#include "core/Registry.h"
1111
#include <errordesc.h>
1212
#include <algorithm>
1313
#include <string>

test/cpp/schema_specific/inverse_attr1.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
#include "config.h"
77
#include "SubSuperIterators.h"
88
#include <STEPfile.h>
9-
#include <sdai.h>
9+
#include "core/sdai.h"
1010
#include <STEPattribute.h>
11-
#include <ExpDict.h>
12-
#include <Registry.h>
11+
#include "core/ExpDict.h"
12+
#include "core/Registry.h"
1313
#include <errordesc.h>
1414
#include <algorithm>
1515
#include <string>

0 commit comments

Comments
 (0)