HamBook – Blame information for rev 9
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.IO.Ports; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
9 | office | 7 | using RJCP.IO.Ports; |
1 | office | 8 | |
3 | office | 9 | namespace HamBook.Radios.Generic.CAT |
10 | { |
||
1 | office | 11 | public abstract class SC : Cat |
12 | { |
||
13 | public override string Name => "SC"; |
||
14 | |||
15 | public override string Definition => "SCAN"; |
||
16 | |||
9 | office | 17 | public SC(SerialPortStream serialPort) : base(serialPort) |
1 | office | 18 | { |
19 | } |
||
20 | |||
7 | office | 21 | public abstract bool Set(ScanState scanState); |
1 | office | 22 | |
23 | public abstract ScanState Read(); |
||
24 | } |
||
25 | } |