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() {