Add LICENSE
[pygdb.git] / StatusFrame.py
1 #!/usr/bin/python
2 #shuber, 2008-06-09
3
4 __author__ = "shuber"
5
6
7 import gtk
8
9
10 class StatusFrame (gtk.Frame):
11
12 def __init__(self, debugger):
13 gtk.Frame.__init__(self)
14 self.debugger = debugger
15
16 def applyConfiguration(self, conf):
17 raise NotImplemented()
18
19 def fillConfiguration(self, conf):
20 raise NotImplemented()
21
22 def updateValues(self, status, param):
23 raise NotImplemented()
24
25
26