source: branches/GUIdev/OutputGUI/DuchampOutputGUI.py @ 1441

Last change on this file since 1441 was 1344, checked in by KelvinHsu, 10 years ago

Initial Commit

File size: 672 bytes
Line 
1#!/usr/bin/env python
2
3#-------------------------------------------------------------------------------
4# Name:        DuchampOutputGUI
5# Purpose:
6#
7# Author:      Kelvin
8#
9# Created:     02/01/2014
10#-------------------------------------------------------------------------------
11
12import sys
13from ApplicationWindow import *
14
15# Main Program
16def main():
17
18    # Create our application
19    app = QtGui.QApplication(sys.argv)
20
21    # Create our application window
22    window = ApplicationWindow()
23    window.setWindowTitle("Duchamp Results")
24    window.show()
25
26    # Start the program
27    sys.exit(app.exec_())
28
29if __name__ == '__main__':
30    main()
Note: See TracBrowser for help on using the repository browser.