HamBook – Diff between revs 7 and 9

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 7 Rev 9
Line 2... Line 2...
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.IO.Ports; 3 using System.IO.Ports;
4 using System.Linq; 4 using System.Linq;
5 using System.Text; 5 using System.Text;
6 using System.Threading.Tasks; 6 using System.Threading.Tasks;
-   7 using RJCP.IO.Ports;
Line 7... Line 8...
7   8  
8 namespace HamBook.Radios.Generic.CAT 9 namespace HamBook.Radios.Generic.CAT
9 { 10 {
10 public abstract class ID : Cat 11 public abstract class ID : Cat
11 { 12 {
12 public ID(SerialPort serialPort) : base(serialPort) 13 public ID(SerialPortStream serialPort) : base(serialPort)
13 { 14 {
Line 14... Line 15...
14 } 15 }