HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
9 | office | 1 | using RJCP.IO.Ports; |
2 | |||
3 | namespace HamBook.Radios.Generic.CAT |
||
4 | { |
||
54 | office | 5 | public abstract class By : Cat |
9 | office | 6 | { |
54 | office | 7 | public By(SerialPortStream serialPort) : base(serialPort) |
9 | office | 8 | { |
9 | } |
||
10 | |||
11 | public override string Name => "BY"; |
||
12 | |||
13 | public override string Definition => "BUSY"; |
||
14 | |||
15 | public abstract BusyState Parse(string input); |
||
16 | |||
17 | public abstract BusyState Read(); |
||
18 | } |
||
54 | office | 19 | } |