Skip to content

Commit e01b949

Browse files
committed
Fix some needed sta/ and Qt includes.
Adding headers to files using symbols from the given headers. Signed-off-by: Henner Zeller <[email protected]>
1 parent 8daed51 commit e01b949

File tree

151 files changed

+445
-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.

151 files changed

+445
-0
lines changed

src/Tech.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "ord/OpenRoad.hh"
1414
#include "sta/Corner.hh"
1515
#include "sta/Liberty.hh"
16+
#include "sta/MinMax.hh"
1617
#include "sta/Units.hh"
1718

1819
namespace ord {

src/Timing.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@
1919
#include "ord/OpenRoad.hh"
2020
#include "ord/Tech.h"
2121
#include "rsz/Resizer.hh"
22+
#include "sta/Clock.hh"
2223
#include "sta/Corner.hh"
2324
#include "sta/Liberty.hh"
25+
#include "sta/MinMax.hh"
26+
#include "sta/PowerClass.hh"
2427
#include "sta/Search.hh"
2528
#include "sta/TimingArc.hh"
2629
#include "sta/TimingRole.hh"

src/cgt/include/cgt/NetworkBuilder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include "db_sta/dbNetwork.hh"
1111
#include "db_sta/dbSta.hh"
12+
#include "sta/Liberty.hh"
1213
#include "utl/deleter.h"
1314

1415
namespace cgt {

src/cts/src/CtsGraphics.cpp

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

11+
#include "gui/gui.h"
1112
#include "odb/geom.h"
1213
#include "utl/Logger.h"
1314

src/cts/src/LatencyBalancer.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33

44
#include "LatencyBalancer.h"
55

6+
#include <algorithm>
7+
#include <cmath>
8+
#include <limits>
69
#include <map>
710
#include <set>
11+
#include <stack>
812
#include <string>
913
#include <utility>
1014
#include <vector>
@@ -14,13 +18,22 @@
1418
#include "TreeBuilder.h"
1519
#include "cts/TritonCTS.h"
1620
#include "odb/db.h"
21+
#include "odb/dbSet.h"
22+
#include "odb/geom.h"
23+
#include "sta/Clock.hh"
24+
#include "sta/Delay.hh"
1725
#include "sta/Graph.hh"
1826
#include "sta/GraphDelayCalc.hh"
1927
#include "sta/Liberty.hh"
28+
#include "sta/NetworkClass.hh"
29+
#include "sta/Path.hh"
2030
#include "sta/PathAnalysisPt.hh"
2131
#include "sta/PathEnd.hh"
2232
#include "sta/PathExpanded.hh"
2333
#include "sta/Sdc.hh"
34+
#include "sta/TimingArc.hh"
35+
#include "sta/TimingModel.hh"
36+
#include "utl/Logger.h"
2437

2538
namespace cts {
2639

src/cts/src/LatencyBalancer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "TreeBuilder.h"
1616
#include "Util.h"
1717
#include "odb/db.h"
18+
#include "sta/Delay.hh"
1819

1920
namespace utl {
2021
class Logger;

src/cts/src/LevelBalancer.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "cts/TritonCTS.h"
1616
#include "odb/db.h"
1717
#include "odb/dbObject.h"
18+
#include "utl/Logger.h"
1819

1920
namespace cts {
2021

src/cts/src/TechChar.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@
2424
#include "rsz/Resizer.hh"
2525
#include "sta/Graph.hh"
2626
#include "sta/Liberty.hh"
27+
#include "sta/LibertyClass.hh"
28+
#include "sta/MinMax.hh"
2729
#include "sta/PathAnalysisPt.hh"
30+
#include "sta/PowerClass.hh"
2831
#include "sta/Sdc.hh"
2932
#include "sta/Search.hh"
3033
#include "sta/TableModel.hh"
3134
#include "sta/TimingArc.hh"
35+
#include "sta/TimingModel.hh"
36+
#include "sta/Transition.hh"
3237
#include "sta/Units.hh"
3338
#include "utl/Logger.h"
3439

src/cts/src/TechChar.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@
2525
#include "boost/functional/hash.hpp"
2626
#include "boost/unordered/unordered_map.hpp"
2727
#include "db_sta/dbNetwork.hh"
28+
#include "db_sta/dbSta.hh"
2829
#include "est/EstimateParasitics.h"
2930
#include "odb/db.h"
3031
#include "rsz/Resizer.hh"
3132
#include "sta/Corner.hh"
33+
#include "sta/Graph.hh"
34+
#include "sta/Liberty.hh"
3235

3336
namespace utl {
3437
class Logger;

src/cts/src/TreeBuilder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "boost/unordered/unordered_set.hpp"
2121
#include "odb/db.h"
2222
#include "odb/geom.h"
23+
#include "utl/Logger.h"
2324

2425
namespace utl {
2526
class Logger;

0 commit comments

Comments
 (0)