X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/48f48e6a26a54751ecd0ab90b10ab972cc5e89cd..df84660fd98b39737692d57b68c8b2c2d34af0f1:/Graph.h?ds=inline diff --git a/Graph.h b/Graph.h index f3e9923..b9c598a 100644 --- a/Graph.h +++ b/Graph.h @@ -10,7 +10,8 @@ class GroupBlock; class ReferenceBlock; class FunctionalBlock; class AbstractInterface; - +#include "Exception.h" +class Exception; using namespace std; using namespace Qt; @@ -27,7 +28,7 @@ public: // methods for group blocks GroupBlock* createChildGroupBlock(GroupBlock* parent); - bool removeGroupBlock(GroupBlock *group); + void removeGroupBlock(GroupBlock *group); GroupBlock* getGroupBlockByName(QString name); // methods for functional blocks @@ -45,14 +46,14 @@ public: // others QList getOutsideInterfaces(); /*! - * \brief initPatterns - * initPatterns() crosses the graph and for each functional block, it computes + * \brief createPatterns + * createPatterns() crosses the graph and for each functional block, it computes * the consumptionPattern, the productionPattern, the production counter and delta * using the parameters fo the block. */ - bool createPatterns(); + void createPatterns() throw(Exception); void resetPatternComputed(); - bool computeOutputPatterns(int nbExec); + void computeOutputPatterns(int nbExec) throw(Exception); private: