00001 #!/usr/bin/env python 00002 00003 from python_qt_binding.QtCore import QObject 00004 00005 class Interface(object): 00006 00007 def __init__(self, frame_editor): 00008 pass 00009 00010 def update(self, editor, level, elements): 00011 pass 00012 00013 def broadcast(self, editor): 00014 pass 00015 00016 # eof