Source code for gwa.code_menu

#!/usr/bin/python
# -*- coding: utf-8 -*-


"""
These classes contain the links between the GUI and the code
"""

from PyQt4 import QtCore, QtGui
import os, sys
from ihm_menu import Ui_Menu



if __name__ == "__main__":
	 import sys
	 app= QtGui.QApplication(sys.argv)
	 scr = ControlerMenu()
	 scr.show()
	 sys.exit(app.exec_())