Files
bds.mr.devmgr/src.devmgr/drv/mr.drv.pas
T
2026-01-03 18:53:14 +01:00

25 lines
499 B
ObjectPascal

unit mr.drv;
interface
type
TDriver = class abstract( TInterfacedObject)
protected
fDeviceHandle : THandle;
fDevicePath : string;
public
procedure Open; virtual; abstract;
procedure Close; virtual; abstract;
public
property DevicePath : string read fDevicePath;
property DeviceHandle : THandle read fDeviceHandle;
end;
TDriverClass = class of TDriver;
implementation
end.