Add the project class, containig the project information
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 16 Dec 2008 10:38:48 +0000 (10:38 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 16 Dec 2008 10:38:48 +0000 (10:38 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2038 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BProject.py [new file with mode: 0644]

diff --git a/wizard/BProject.py b/wizard/BProject.py
new file mode 100644 (file)
index 0000000..907599c
--- /dev/null
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+# encoding: utf-8
+#
+# Copyright 2008 Develer S.r.l. (http://www.develer.com/)
+# All rights reserved.
+#
+# $Id:$
+#
+# Author: Lorenzo Berni <duplo@develer.com>
+#
+
+class BProject(object):
+    
+    def __init__(self):
+        pass
+    
+    def openProject(self, path):
+        # Fill the BProject fields, opening an existing project
+        pass
+    
+    def setProjectPath(self, path):
+        self.projectPath = path
+    
+    def setSourcePath(self, path):
+        self.sourcePath = path
+    
+    
\ No newline at end of file