Add a stub of the BProject interface for store the project infos
[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 setProjectPath(self, path):
18         self.projectPath = path
19     
20     def setSourcePath(self, path):
21         self.sourcePath = path
22     
23