Add a stub of the BProject interface for store the project infos
[bertos.git] / wizard / BWizardPage.py
index 4eb9915b5fed6331639fb0aa431d2da44ce3ae6c..dd031ed996a8665a3eb9da4f663c81ba9d38eb05 100644 (file)
@@ -26,4 +26,10 @@ class BWizardPage(QWizardPage):
         QApplication.instance().settings.setValue(QString(key), QVariant(value))
     
     def _settingsRetrieve(self, key):
-        return QApplication.instance().settings.value(QString(key), QVariant())
\ No newline at end of file
+        return QApplication.instance().settings.value(QString(key), QVariant())
+    
+    def _projectInfoStore(self, key, value):
+        QApplication.instance().project.setInfo(key, value)
+    
+    def _projectInfoRetrieve(self, key):
+        return QApplication.instance().project.setInfo(key)
\ No newline at end of file