X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/7b1c7e44123b9b2626205a89e27b2a4712ea30c6..9ea814d76cc52e24b80be4a6ea78cca24a9a4915:/Graph.h?ds=sidebyside

diff --git a/Graph.h b/Graph.h
index 03d1882..b9c598a 100644
--- a/Graph.h
+++ b/Graph.h
@@ -10,6 +10,7 @@ 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
@@ -52,7 +53,7 @@ public:
    */
   void createPatterns() throw(Exception);
   void resetPatternComputed();
-  bool computeOutputPatterns(int nbExec);
+  void computeOutputPatterns(int nbExec) throw(Exception);
   
   
 private: