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

Private GIT Repository
finished testbench generation
[blast.git] / FunctionalBlock.h
index 8c469d5b2936d545eadd7c1baf4249f391dc8f07..93ac7d1de97079eef84ead29786dc4c89f716fe7 100644 (file)
@@ -26,7 +26,7 @@ using namespace Qt;
 class FunctionalBlock : public AbstractBlock {\r
 public:\r
 \r
 class FunctionalBlock : public AbstractBlock {\r
 public:\r
 \r
-  FunctionalBlock(GroupBlock* _parent, ReferenceBlock* _reference, bool createIfaces = true) throw(Exception);\r
+  FunctionalBlock(Graph* _graph, GroupBlock* _parent, ReferenceBlock* _reference, bool createIfaces = true) throw(Exception);\r
   ~FunctionalBlock();\r
   // getters\r
   inline ReferenceBlock* getReference() { return reference; }\r
   ~FunctionalBlock();\r
   // getters\r
   inline ReferenceBlock* getReference() { return reference; }\r
@@ -46,7 +46,7 @@ public:
 \r
   // testers\r
   bool isFunctionalBlock();\r
 \r
   // testers\r
   bool isFunctionalBlock();\r
-  bool isSourceBlock(); //! a source block has no parent and has no data inputs\r
+  bool isStimuliBlock(); //! a stimuli block has no parent and is out of the top group\r
 \r
   // others\r
 \r
 \r
   // others\r
 \r
@@ -63,8 +63,8 @@ public:
   \r
   // patterns\r
   void createPatterns() throw(Exception); // called in Graph, before checking compatibility and computing output pattern\r
   \r
   // patterns\r
   void createPatterns() throw(Exception); // called in Graph, before checking compatibility and computing output pattern\r
-  void checkInputPatternCompatibility() throw(Exception);\r
-  void computeOutputPattern(int nbExec = -1) throw(Exception);\r
+  virtual void checkInputPatternCompatibility() throw(Exception);\r
+  virtual void computeOutputPattern(int nbExec = -1) throw(Exception);\r
   void computeAdmittanceDelays() throw(Exception); // compute differences between IP and admittance\r
 \r
 protected:\r
   void computeAdmittanceDelays() throw(Exception); // compute differences between IP and admittance\r
 \r
 protected:\r