Forwarded attributes API
I propose to implement the new forward attributes feature in Tango 9 like this:
class D(Device):
energy = attribute(label="Energy", forward=True)
forward keyword is False by default. When forward=True it should only accept label keyword. All other keywords should throw exception.
I am open to any comments/suggestions/proposals ?