00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #if !defined(oagTimerReport_P)
00014 #define oagTimerReport_P
00015
00016 #include "oagTimerTimer.h"
00017
00018 namespace oagTimer {
00019
00020 class Report {
00021 public:
00022 Report(oaDesign *design, Timer *timer);
00023 ~Report();
00024
00025 void pathReport(nodesSlopeDir & path);
00026 void reportAll();
00027 void reportEndpointsSlacks();
00028 void print(int w, const double d);
00029
00030 void printNets();
00031 void printNets(netsSlacks & nNets);
00032
00033 private:
00034 oaOccurrence *_occ;
00035 Timer *_timer;
00036 };
00037
00038 }
00039
00040 #endif