X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/f311fbc3e1436bf248c54225f0743cfa671c4bd7..48f48e6a26a54751ecd0ab90b10ab972cc5e89cd:/GroupBlock.h?ds=inline diff --git a/GroupBlock.h b/GroupBlock.h index 5a03236..593b854 100644 --- a/GroupBlock.h +++ b/GroupBlock.h @@ -27,11 +27,14 @@ public: // testers bool isGroupBlock(); + bool isTopGroupBlock(); inline bool isTop() { return topGroup; } // others inline void addBlock(AbstractBlock* block) { blocks.append(block); } void removeBlock(AbstractBlock* block); + AbstractBlock* getFunctionalBlockByName(QString name); + void removeAllBlocks(); void parametersValidation(QList *checkedBlocks, QList* blocksToConfigure); void addGenericParameter(QString name, QString type, QString value); @@ -39,7 +42,19 @@ public: // public attributes static int counter; -private: + bool computeOutputPattern(int nbExec = -1); + +private: + // patterns + /*! + * \brief initInputPattern + * Since input GroupInterface are just tunnels to input interfaces of inner blocks, they must + * have an output pattern that can be provided to inner interfaces. That outpu pattern is just + * found by taking the output pattern of the connectedFrom interface. + */ + void initInputPattern(); + + bool topGroup; QList blocks; // contains instances of FunctionalBlock or GroupBlock that are children of this group