X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/8fb3c55ee009a11db5e1c08a4cfb286979412745..e0eaffd44fc9733bc230a803c80d8d5efd0faca6:/Graph.h?ds=sidebyside diff --git a/Graph.h b/Graph.h index 58690c9..bbd7eb2 100644 --- a/Graph.h +++ b/Graph.h @@ -19,13 +19,18 @@ using namespace Qt; class Graph { public: - Graph(bool createTopGroupIface = true); + Graph(); ~Graph(); // getters inline GroupBlock* getTopGroup() { return topGroup; } inline QList getAllGroups() { return groups; } + inline double getClock(int id) { return clocks.at(id); } + inline QList& getClocks() { return clocks; } + //setters + inline void resetClocks() { clocks.clear(); } + // methods for group blocks GroupBlock* createChildGroupBlock(GroupBlock* parent, bool createGroupIface = true); void removeGroupBlock(GroupBlock *group); @@ -44,6 +49,8 @@ public: bool removeStimuliBlock(FunctionalBlock* block); // others + void createTopGroup(bool createTopGroupIfaces = true); + inline void addClock(double freq) { clocks.append(freq); } QList getOutsideInterfaces(); QList getExternalResources(); // returns the list of all external files needed for VHDL generation @@ -58,11 +65,13 @@ public: void computeOutputPatterns(int nbExec) throw(Exception); void generateVHDL(const QString& path) throw(Exception); + void generateTestbench(const QString& projectName, const QString& benchFile) throw(Exception); private: GroupBlock* topGroup; QList groups; //! usefull to avoid recursive methods to find a particular group. QList stimulis; //! source for the top group + QList clocks; // clocks[0] is the main clock. };