##// END OF EJS Templates
IO_Writer: default datatype was changed to 4 (float32), instead of 3 (int64).
IO_Writer: default datatype was changed to 4 (float32), instead of 3 (int64).

File last commit:

r577:bea3bacb993a
r627:7e89cdea8c41
Show More
ftp.py
21 lines | 422 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
Module implementing Ftp.
"""
from PyQt4.QtGui import QMainWindow
from PyQt4.QtCore import pyqtSignature
from schainpy.gui.viewer.ftp import Ui_Ftp
class Ftp(QMainWindow, Ui_MainWindow):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QMainWindow.__init__(self, parent)
self.setupUi(self)