HamBook – Diff between revs 9 and 54
?pathlinks?
Rev 9 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | using RJCP.IO.Ports; |
1 | using RJCP.IO.Ports; |
|
2 | using System; |
- | ||
3 | using System.Collections.Generic; |
- | ||
4 | using System.IO.Ports; |
- | ||
5 | using System.Linq; |
- | ||
6 | using System.Text; |
- | ||
7 | using System.Threading.Tasks; |
- | ||
Line 8... | Line 2... | |||
8 | |
2 | |
|
9 | namespace HamBook.Radios.Generic.CAT |
3 | namespace HamBook.Radios.Generic.CAT |
|
10 | { |
4 | { |
|
11 | public abstract class BY : Cat |
5 | public abstract class By : Cat |
|
12 | { |
6 | { |
|
13 | public BY(SerialPortStream serialPort) : base(serialPort) |
7 | public By(SerialPortStream serialPort) : base(serialPort) |
|
14 | { |
8 | { |
|
Line 15... | Line 9... | |||
15 | } |
9 | } |
|
Line 20... | Line 14... | |||
20 | |
14 | |
|
Line 21... | Line 15... | |||
21 | public abstract BusyState Parse(string input); |
15 | public abstract BusyState Parse(string input); |
|
22 | |
16 | |
|
23 | public abstract BusyState Read(); |
17 | public abstract BusyState Read(); |
|
24 | } |
18 | } |