HamBook – Diff between revs 38 and 54

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 38 Rev 54
Line 1... Line 1...
1 using RJCP.IO.Ports; 1 using System.Threading;
2 using System; -  
3 using System.Collections.Generic; -  
4 using System.IO.Ports; 2 using RJCP.IO.Ports;
5 using System.Linq; -  
6 using System.Text; -  
7 using System.Threading; -  
8 using System.Threading.Tasks; -  
Line 9... Line 3...
9   3  
10 namespace HamBook.Radios.Generic.CAT 4 namespace HamBook.Radios.Generic.CAT
11 { 5 {
12 public abstract class VM : Cat 6 public abstract class Vm : Cat
13 { 7 {
14 public VM(SerialPortStream serialPort) : base(serialPort) 8 public Vm(SerialPortStream serialPort) : base(serialPort)
15 { 9 {
Line 16... Line 10...
16 } 10 }
Line 21... Line 15...
21   15  
Line 22... Line 16...
22 public abstract void Set(); 16 public abstract void Set();
23   17  
24 public abstract void CatWriteAsync(CancellationToken cancellationToken); 18 public abstract void CatWriteAsync(CancellationToken cancellationToken);
25 } 19 }