]> AND Private Git Repository - blast.git/blobdiff - GroupBlock.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
adding link between ifaces and clk
[blast.git] / GroupBlock.cpp
index 7945ee75e0c8f991538f07eecb732dc9adc78428..ea7f2f7e7b7cc01c8709df86a557162f835e098b 100644 (file)
@@ -43,20 +43,10 @@ GroupBlock::GroupBlock(GroupBlock *_parent, bool createIfaces) throw(Exception)
     addInterface(clk);
     addInterface(rst);
     // creating clkrstgen block and connecting it to this: done in Dispatcher since this has no access to library
+    cout << "created ext_clk and reset ifaces for top group" << endl;
   }
   parent = _parent;
 
-  if (_parent != NULL) {
-    try {
-      connectClkReset();
-    }
-    catch(Exception e) {
-      AbstractBlock* source = (AbstractBlock *)(e.getSource());
-      cerr << qPrintable(source->getName()) << ":" << qPrintable(e.getMessage()) << endl;
-      throw(e);
-    }
-  }
-
 }
 
 GroupBlock::~GroupBlock() {