HamBook – Diff between revs 9 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
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.Tasks; -  
7 using RJCP.IO.Ports; 1 using RJCP.IO.Ports;
Line 8... Line 2...
8   2  
9 namespace HamBook.Radios.Generic.CAT 3 namespace HamBook.Radios.Generic.CAT
10 { 4 {
11 public abstract class SC : Cat 5 public abstract class Sc : Cat
-   6 {
-   7 public Sc(SerialPortStream serialPort) : base(serialPort)
-   8 {
-   9 }
12 { 10  
Line 13... Line 11...
13 public override string Name => "SC"; 11 public override string Name => "SC";
Line 14... Line -...
14   -  
15 public override string Definition => "SCAN"; -  
16   -  
17 public SC(SerialPortStream serialPort) : base(serialPort) -  
18 { 12  
Line 19... Line 13...
19 } 13 public override string Definition => "SCAN";
20   14  
21 public abstract bool Set(ScanState scanState); 15 public abstract bool Set(ScanState scanState);
22   16