X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/abbc64cf04a35ab3549d5c516f44c7c5921baa63..48f48e6a26a54751ecd0ab90b10ab972cc5e89cd:/GroupBlock.h?ds=inline diff --git a/GroupBlock.h b/GroupBlock.h index 3316637..593b854 100644 --- a/GroupBlock.h +++ b/GroupBlock.h @@ -21,26 +21,42 @@ public: virtual ~GroupBlock(); // getters - + inline QList getBlocks() { return blocks; } // setters void setParent(AbstractBlock *_parent); // 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); void removeGenericParameter(QString name); // 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 + QList blocks; // contains instances of FunctionalBlock or GroupBlock that are children of this group };