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