HamBook – Blame information for rev 9
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
9 | office | 1 | using Org.BouncyCastle.Crypto; |
2 | using RJCP.IO.Ports; |
||
3 | using System; |
||
1 | office | 4 | using System.Collections.Generic; |
9 | office | 5 | using System.Drawing; |
1 | office | 6 | using System.IO.Ports; |
7 | using System.Linq; |
||
8 | using System.Text; |
||
9 | using System.Threading.Tasks; |
||
10 | |||
11 | namespace HamBook.Radios |
||
12 | { |
||
13 | public abstract class Cat : IDisposable |
||
14 | { |
||
15 | public abstract string Name { get; } |
||
16 | |||
17 | public abstract string Definition { get; } |
||
18 | |||
9 | office | 19 | public SerialPortStream SerialPort { get; } |
1 | office | 20 | |
9 | office | 21 | public abstract CatLength CatLength { get; } |
22 | |||
23 | public Cat(SerialPortStream serialPort) |
||
1 | office | 24 | { |
25 | SerialPort = serialPort; |
||
26 | } |
||
27 | |||
28 | public void Dispose() |
||
29 | { |
||
30 | SerialPort.Dispose(); |
||
31 | } |
||
32 | } |
||
33 | } |