19 lines
334 B
C++
19 lines
334 B
C++
#ifndef TATUM_HPP
|
|
#define TATUM_HPP
|
|
|
|
#include "tatum_fwd.hpp"
|
|
|
|
//Data structures
|
|
#include "tatum/TimingGraph.hpp"
|
|
#include "tatum/TimingConstraints.hpp"
|
|
|
|
//Analyzers
|
|
#include "tatum/timing_analyzers.hpp"
|
|
#include "tatum/graph_walkers.hpp"
|
|
#include "tatum/analyzer_factory.hpp"
|
|
|
|
//Reporting
|
|
#include "tatum/TimingReporter.hpp"
|
|
|
|
#endif
|