36 lines
758 B
Plaintext
36 lines
758 B
Plaintext
{*******************************************************}
|
|
{ }
|
|
{ ManagerOffExp }
|
|
{ }
|
|
{ Copyright (C) 2023 kku }
|
|
{ }
|
|
{*******************************************************}
|
|
|
|
unit ManagerOffExp;
|
|
|
|
interface
|
|
|
|
uses
|
|
Tocsg.Obj, System.SysUtils, Winapi.Windows;
|
|
|
|
type
|
|
TManagerOffExp = class(TTgObject)
|
|
public
|
|
Constructor Create;
|
|
Destructor Destroy; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
Constructor TManagerOffExp.Create;
|
|
begin
|
|
Inherited Create;
|
|
end;
|
|
|
|
Destructor TManagerOffExp.Destroy;
|
|
begin
|
|
Inherited;
|
|
end;
|
|
|
|
end.
|