summaryrefslogtreecommitdiffstats
path: root/iw/iw_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-04-19 21:08:15 +0000
committerMike Fulbright <msf@redhat.com>2000-04-19 21:08:15 +0000
commita4160935301ea7488b49def2fbc3fa7524b1e339 (patch)
treed36535987ab2e27e609e511cb0c7bf0c4319d7bd /iw/iw_gui.py
parent315af6a76b626b669f4dd116802f0588de46451b (diff)
downloadanaconda-a4160935301ea7488b49def2fbc3fa7524b1e339.tar.gz
anaconda-a4160935301ea7488b49def2fbc3fa7524b1e339.tar.xz
anaconda-a4160935301ea7488b49def2fbc3fa7524b1e339.zip
Renamed iw.py to iw_gui.py
Diffstat (limited to 'iw/iw_gui.py')
-rw-r--r--iw/iw_gui.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/iw/iw_gui.py b/iw/iw_gui.py
new file mode 100644
index 000000000..950f9d1a7
--- /dev/null
+++ b/iw/iw_gui.py
@@ -0,0 +1,19 @@
+class InstallWindow:
+ def __init__ (self,ics):
+ self.ics = ics
+ self.todo = ics.getToDo ()
+
+ def getNext (self):
+ return None
+
+ def getPrev (self):
+ return None
+
+ def getScreen (self):
+ pass
+
+ def getICS (self):
+ return self.ics
+
+ def fixUp (self):
+ pass