Implementation parking vue

This commit is contained in:
sidya82
2014-12-26 17:38:51 +01:00
parent b0b630fd22
commit 27f6d954ea
8 changed files with 196 additions and 76 deletions

12
src/c/CreaParking.py Normal file
View File

@ -0,0 +1,12 @@
from PyQt4 import QtGui
from src.v.Ui_CreaParking import Ui_CreaParking
__author__ = 'sidya'
class CreaParking:
def __init__(self):
self.w = QtGui.QWidget()
self.ui = Ui_CreaParking()
self.ui.setupUi(self.w)
self.w.show()