HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
54 | office | 1 | using System.Threading; |
15 | office | 2 | using System.Threading.Tasks; |
54 | office | 3 | using RJCP.IO.Ports; |
15 | office | 4 | |
5 | namespace HamBook.Radios.Generic.CAT |
||
6 | { |
||
54 | office | 7 | public abstract class Mr : Cat |
15 | office | 8 | { |
54 | office | 9 | public Mr(SerialPortStream serialPort) : base(serialPort) |
15 | office | 10 | { |
11 | } |
||
12 | |||
13 | public override string Name => "MR"; |
||
14 | |||
15 | public override string Definition => "MEMORY CHANNEL READ"; |
||
16 | |||
17 | public abstract MemoryChannel Read(string location); |
||
18 | |||
19 | public abstract Task<MemoryChannel> ReadAsync(string location, CancellationToken cancellationToken); |
||
20 | |||
46 | office | 21 | //public abstract MemoryChannel Parse(string input); |
15 | office | 22 | } |
54 | office | 23 | } |