mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 03:45:06 -05:00
40 lines
466 B
ObjectPascal
40 lines
466 B
ObjectPascal
unit extensionmanager;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
(**
|
|
TExtensionManager holds a list of VirtualExtensions, and
|
|
has functions to easily handle hooks.
|
|
*)
|
|
|
|
TExtensionManager = class(TObject)
|
|
public
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
constructor TExtensionManager.Create;
|
|
begin
|
|
|
|
end;
|
|
|
|
destructor TExtensionManager.Destroy;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|