From: duplo Date: Tue, 16 Dec 2008 10:38:48 +0000 (+0000) Subject: Add the project class, containig the project information X-Git-Tag: 2.1.0~644 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=09c65af968e05eb488e08541a04e4d084f63ee01;p=bertos.git Add the project class, containig the project information git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2038 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BProject.py b/wizard/BProject.py new file mode 100644 index 00000000..907599c7 --- /dev/null +++ b/wizard/BProject.py @@ -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 +# + +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