1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-14 21:35:07 -05:00
Simba/Projects/SAMufasaGUI/extensionmanager.pas

40 lines
466 B
ObjectPascal
Raw Normal View History

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)
2010-03-18 19:41:32 -04:00
public
constructor Create;
destructor Destroy; override;
end;
2010-03-18 19:41:32 -04:00
implementation
2010-03-18 19:41:32 -04:00
constructor TExtensionManager.Create;
begin
end;
destructor TExtensionManager.Destroy;
begin
end;
end.