HamBook – Diff between revs 9 and 54
?pathlinks?
Rev 9 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line -... | |||
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; |
1 | using System.Threading; |
|
7 | using System.Threading.Tasks; |
2 | using System.Threading.Tasks; |
|
8 | using RJCP.IO.Ports; |
3 | using RJCP.IO.Ports; |
|
Line 9... | Line 4... | |||
9 | |
4 | |
|
10 | namespace HamBook.Radios.Generic.CAT |
5 | namespace HamBook.Radios.Generic.CAT |
|
11 | { |
6 | { |
|
12 | public abstract class AI : Cat |
7 | public abstract class Ai : Cat |
|
13 | { |
8 | { |
|
14 | public AI(SerialPortStream serialPort) : base(serialPort) |
9 | public Ai(SerialPortStream serialPort) : base(serialPort) |
|
15 | { |
10 | { |
|
Line 16... | Line 11... | |||
16 | } |
11 | } |
|
Line 31... | Line 26... | |||
31 | |
26 | |
|
Line 32... | Line 27... | |||
32 | public abstract Task<InformationState> ReadAsync(CancellationToken cancellationToken); |
27 | public abstract Task<InformationState> ReadAsync(CancellationToken cancellationToken); |
|
33 | |
28 | |
|
34 | public abstract Information Parse(string input); |
29 | public abstract Information Parse(string input); |
|
35 | } |
30 | } |