Add the project class, containig the project information
[bertos.git] / wizard / BProject.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 class BProject(object):
13     
14     def __init__(self):
15         pass
16     
17     def openProject(self, path):
18         # Fill the BProject fields, opening an existing project
19         pass
20     
21     def setProjectPath(self, path):
22         self.projectPath = path
23     
24     def setSourcePath(self, path):
25         self.sourcePath = path
26     
27