Skip to content

Commit 043f1d4

Browse files
committed
Generated files, as if they had header checks applied.
This is not for submit (as it would clash with the code generation that would overwrite it). This is just as a reference what the code-generator would need to emit to fix a bunch of missing includes there. Signed-off-by: Henner Zeller <[email protected]>
1 parent eada1bb commit 043f1d4

File tree

137 files changed

+298
-0
lines changed

Some content is hidden

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

137 files changed

+298
-0
lines changed

src/odb/src/db/dbAccessPoint.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
#include "dbAccessPoint.h"
66

77
#include <array>
8+
#include <cstdint>
9+
#include <tuple>
10+
#include <utility>
811

12+
#include "dbCore.h"
913
#include "dbDatabase.h"
1014
#include "dbTable.h"
1115
#include "dbTable.hpp"
1216
#include "odb/db.h"
17+
#include "odb/dbObject.h"
1318
#include "odb/dbTypes.h"
19+
#include "odb/geom.h"
1420
// User Code Begin Includes
1521
#include <algorithm>
1622
#include <vector>

src/odb/src/db/dbAccessPoint.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
#pragma once
66

77
#include <array>
8+
#include <tuple>
89

910
#include "dbCore.h"
1011
#include "dbVector.h"
12+
#include "odb/dbId.h"
13+
#include "odb/dbObject.h"
1114
#include "odb/odb.h"
1215
// User Code Begin Includes
1316
#include <utility>

src/odb/src/db/dbBusPort.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "dbBusPort.h"
66

77
#include "dbBlock.h"
8+
#include "dbCore.h"
89
#include "dbDatabase.h"
910
#include "dbHashTable.hpp"
1011
#include "dbModBTerm.h"
@@ -16,6 +17,7 @@
1617
#include "dbTable.hpp"
1718
#include "dbVector.h"
1819
#include "odb/db.h"
20+
#include "odb/dbSet.h"
1921
namespace odb {
2022
template class dbTable<_dbBusPort>;
2123

src/odb/src/db/dbBusPort.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
// Generator Code Begin Header
55
#pragma once
66

7+
#include <cmath>
8+
79
#include "dbCore.h"
10+
#include "odb/dbId.h"
811
#include "odb/odb.h"
912
// User Code Begin Includes
1013
#include "dbModuleBusPortModBTermItr.h"

src/odb/src/db/dbCellEdgeSpacing.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <cstring>
99
#include <string>
1010

11+
#include "dbCore.h"
1112
#include "dbDatabase.h"
1213
#include "dbTable.h"
1314
#include "dbTable.hpp"

src/odb/src/db/dbChip.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44
// Generator Code Begin Cpp
55
#include "dbChip.h"
66

7+
#include <cstdlib>
78
#include <string>
89
#include <unordered_map>
910

1011
#include "dbBlock.h"
1112
#include "dbBlockItr.h"
1213
#include "dbChipConn.h"
1314
#include "dbChipRegion.h"
15+
#include "dbCommon.h"
16+
#include "dbCore.h"
1417
#include "dbDatabase.h"
1518
#include "dbNameCache.h"
1619
#include "dbProperty.h"
@@ -19,7 +22,9 @@
1922
#include "dbTable.hpp"
2023
#include "dbTech.h"
2124
#include "odb/db.h"
25+
#include "odb/dbObject.h"
2226
#include "odb/dbSet.h"
27+
#include "odb/dbStream.h"
2328
// User Code Begin Includes
2429
#include "dbChipConnItr.h"
2530
#include "dbChipInst.h"

src/odb/src/db/dbChip.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include <unordered_map>
99

1010
#include "dbCore.h"
11+
#include "odb/dbId.h"
12+
#include "odb/dbObject.h"
1113
#include "odb/geom.h"
1214
#include "odb/odb.h"
1315

src/odb/src/db/dbChipBump.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "dbChipBump.h"
66

77
#include "dbChip.h"
8+
#include "dbCore.h"
89
#include "dbDatabase.h"
910
#include "dbInst.h"
1011
#include "dbTable.h"

src/odb/src/db/dbChipBumpInst.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "dbChipBumpInst.h"
66

77
#include "dbChip.h"
8+
#include "dbCore.h"
89
#include "dbDatabase.h"
910
#include "dbInst.h"
1011
#include "dbTable.h"

src/odb/src/db/dbChipBumpInstItr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include "dbChipRegionInst.h"
99
#include "dbTable.h"
1010
#include "dbTable.hpp"
11+
#include "odb/dbObject.h"
1112

1213
namespace odb {
1314

0 commit comments

Comments
 (0)