HamBook – Blame information for rev 7
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
7 | 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 ID : Cat |
||
11 | { |
||
12 | public ID(SerialPort serialPort) : base(serialPort) |
||
13 | { |
||
14 | } |
||
15 | |||
16 | public override string Name => "ID"; |
||
17 | |||
18 | public override string Definition => "IDENTIFICATION"; |
||
19 | |||
20 | public abstract bool Read(); |
||
21 | } |
||
22 | } |