mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
32 lines
548 B
ObjectPascal
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.
|