HamBook – Blame information for rev 3
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
3 | 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; |
||
7 | |||
8 | namespace HamBook.Radios.Generic.CAT |
||
9 | { |
||
10 | public abstract class AI : Cat |
||
11 | { |
||
12 | public AI(SerialPort serialPort) : base(serialPort) |
||
13 | { |
||
14 | } |
||
15 | |||
16 | public override string Name => "AI"; |
||
17 | |||
18 | public override string Definition => "AUTO INFORMATION"; |
||
19 | |||
20 | public abstract void Set(InformationState state); |
||
21 | |||
22 | public abstract InformationState Read(); |
||
23 | |||
24 | public abstract Information Parse(string input); |
||
25 | } |
||
26 | } |