spiegel-keyman/common/windows/delphi/ext/sentry/Sentry.Client.Console.pas
2022-06-06 15:13:53 +10:00

32 lines
548 B
ObjectPascal

unit Sentry.Client.Console;
interface
uses
Sentry.Client;
type
TSentryClientConsole = class(TSentryClient)
public
constructor Create(AOptions: TSentryClientOptions; const ALogger: string; AFlags: TSentryClientFlags); override;
destructor Destroy; override;
end;
implementation
{ TSentryClientConsole }
constructor TSentryClientConsole.Create(AOptions: TSentryClientOptions;
const ALogger: string; AFlags: TSentryClientFlags);
begin
inherited;
end;
destructor TSentryClientConsole.Destroy;
begin
inherited;
end;
end.