Changeset 575 for PinConnection/CommTelnetComPortOption.pas
- Timestamp:
- Jun 25, 2024, 11:56:51 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/CommTelnetComPortOption.pas
r574 r575 1 unit UCommTelnetComPortOption; 2 3 {$mode delphi}{$H+} 1 unit CommTelnetComPortOption; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UCommTelnet, USerialPort, 9 SpecializedList, UBinarySerializer; 6 Classes, SysUtils, CommTelnet, SerialPort, SpecializedList, UBinarySerializer; 10 7 11 8 type … … 58 55 function TTelnetOptionComPort.GetDataBits: TDataBits; 59 56 begin 60 61 57 end; 62 58 63 59 function TTelnetOptionComPort.GetDTR: Boolean; 64 60 begin 65 66 61 end; 67 62 68 63 function TTelnetOptionComPort.GetFlowControl: TFlowControl; 69 64 begin 70 71 65 end; 72 66 73 67 function TTelnetOptionComPort.GetParity: TParity; 74 68 begin 75 76 69 end; 77 70 78 71 function TTelnetOptionComPort.GetRTS: Boolean; 79 72 begin 80 81 73 end; 82 74 83 75 function TTelnetOptionComPort.GetStopBits: TStopBits; 84 76 begin 85 86 77 end; 87 78 … … 144 135 procedure TTelnetOptionComPort.SetDataBits(AValue: TDataBits); 145 136 begin 146 147 137 end; 148 138 … … 189 179 procedure TTelnetOptionComPort.SetParity(AValue: TParity); 190 180 begin 191 192 181 end; 193 182 … … 213 202 procedure TTelnetOptionComPort.SetStopBits(AValue: TStopBits); 214 203 begin 215 216 204 end; 217 205 … … 223 211 destructor TTelnetOptionComPort.Destroy; 224 212 begin 225 inherited Destroy;213 inherited; 226 214 end; 227 215
Note:
See TracChangeset
for help on using the changeset viewer.