1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-11 03:45:06 -05:00
Simba/Projects/SAMufasaGUI/extensionmanager.pas
2010-03-19 00:41:32 +01:00

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.