Changeset 413 for PinConnection/UCommTCPClient.pas
- Timestamp:
- Aug 16, 2012, 12:59:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/UCommTCPClient.pas
r411 r413 28 28 { TCommTCPClient } 29 29 30 TCommTCPClient = class 30 TCommTCPClient = class(TCommNode) 31 31 private 32 32 FActive: Boolean; … … 41 41 Port: Word; 42 42 property Active: Boolean read FActive write SetActive; 43 constructor Create ;43 constructor Create(AOwner: TComponent); override; 44 44 destructor Destroy; override; 45 45 end; … … 93 93 end; 94 94 95 constructor TCommTCPClient.Create ;95 constructor TCommTCPClient.Create(AOwner: TComponent); 96 96 begin 97 inherited Create;97 inherited; 98 98 Socket := TTCPBlockSocket.Create; 99 99 Pin := TCommPin.Create; 100 100 Pin.OnReceive := ReceiveData; 101 Pin.Node := Self; 101 102 end; 102 103
Note:
See TracChangeset
for help on using the changeset viewer.