##// END OF EJS Templates
New Plugin Manager and interface to remove all the previous crap!...
New Plugin Manager and interface to remove all the previous crap! Let's use Qt plugin API and make it much simpler.

File last commit:

r67:b3ebdaaf24d5 default
r118:de85e8465e67 tip 1.0
Show More
register.py
10 lines | 268 B | text/x-python | PythonLexer
class SocExplorerRegister:
plugin=0
address=0
def __init__(self, plugin,address):
self.plugin = plugin
self.address = address
def value(self):
return self.plugin.Read(self.address,1)[0]
def set(self, value):
return self.plugin.Write(self.address,[value])