- Fixed bug when bp is set on same addr
[pygdb.git] / StatusFrame.py
diff --git a/StatusFrame.py b/StatusFrame.py
new file mode 100644 (file)
index 0000000..37f7bbf
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+#shuber, 2008-06-09
+
+__author__ = "shuber"
+
+
+import gtk
+
+
+class StatusFrame (gtk.Frame):
+
+       def __init__(self, debugger):
+               gtk.Frame.__init__(self)
+               self.debugger = debugger
+
+       def applyConfiguration(self, conf):
+               raise NotImplemented()
+
+       def fillConfiguration(self, conf):
+               raise NotImplemented()
+
+       def updateValues(self, pos):
+               raise NotImplemented()
+
+
+