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

Private GIT Repository
started clkconvert output gen
[blast.git] / ReferenceBlock.cpp
index b6dee80ce813a88016e75e0cc823a856239a263c..553955b414c24a5157c34a96934b391509bcc8e1 100644 (file)
@@ -8,8 +8,8 @@
 #include "BlockParameterWishbone.h"
 #include "Parameters.h"
 
-ReferenceBlock::ReferenceBlock(const QString _xmlFile) : AbstractBlock() {
-  xmlFile = _xmlFile;
+ReferenceBlock::ReferenceBlock(const QString _xmlFile) : AbstractBlock(NULL) {
+  xmlFile = _xmlFile;  
 }
 
 void ReferenceBlock::addCategory(int id) {
@@ -40,6 +40,16 @@ void ReferenceBlock::setHashMd5() {
 
 void ReferenceBlock::load(QDomElement &elt) throw(Exception) {
 
+  cout << "Block : get version" << endl;
+  QString verStr = elt.attribute("version","none");
+  QString specialStr = elt.attribute("special","none");
+  if (verStr != "none") {
+    setVersion(verStr);
+  }
+  else {
+    setVersion("0.0");
+  }
+  setSpecialType(getSpecialTypeFromString(specialStr));
 
   cout << "Block : get informations" << endl;  
   QDomElement eltInfo  = elt.firstChildElement("informations");
@@ -419,6 +429,8 @@ QDataStream& operator<<(QDataStream &out, const ReferenceBlock &b) {
 
   toWrite << b.name;
   toWrite << b.xmlFile;
+  toWrite << b.specialType;
+  toWrite << b.version;
   toWrite << b.description;
   toWrite << b.categories;
   toWrite << b.hashMd5;
@@ -547,6 +559,8 @@ QDataStream& operator>>(QDataStream &in, ReferenceBlock &b) {
 
   in >> b.name;
   in >> b.xmlFile;
+  in >> b.specialType;
+  in >> b.version;
   in >> b.description;
   in >> b.categories;
   in >> b.hashMd5;
@@ -745,3 +759,4 @@ QList<QString> ReferenceBlock::getExternalResources() {
   return list;
 }
 
+