Consider refactoring Signal class hierarchy
Closed this issue · 2 comments
GDYendell commented
- Base
Signal
inherited by all instead ofComponent
directly - Base
Signal
to have anaccess_mode
to be implemented by child classes SignalRW
to inherit fromSignalR
andSignalW
SignalX
to inherit fromSignalW
{Read,Write}Widget
->Widget
- API to walk all
Signal
s ofTree
so that the caller doesn't have to check if the values are of typeSignal
GDYendell commented
I don't think it is possible to have SignalR(Signal)
, SignalW(Signal)
and SignalRW(SignalR, SignalW)
because SignalRW.pv
should actually be SignalRW.read_pv
when used as a SignalR
...