File size: 316 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from PyQt4 import QtCore, QtGui

import DIMterface as my_gui



if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    wnd = my_gui.MainWindow()
    wnd.resize(640, 480)
    wnd.setWindowTitle("DIMwid")
    wnd.show()
    sys.exit(app.exec_())