source: trunk/Packages/ModularSystem/Demo/UModuleACL.pas

Last change on this file was 18, checked in by chronos, 12 years ago
  • Used external packages are now stored in uncompressed form rather in zipped files. This allow better package version synchronisation.
File size: 539 bytes
Line 
1unit UModuleACL;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, UModularSystem;
9
10type
11 { TModuleACL }
12
13 TModuleACL = class(TModule)
14 constructor Create; override;
15 destructor Destroy; override;
16 end;
17
18
19implementation
20
21{ TModuleACL }
22
23constructor TModuleACL.Create;
24begin
25 inherited;
26 Name := 'UserACL';
27 Title := 'User ACL';
28 Version := '1.0';
29 License := 'GNU/LGPLv3';
30 Dependencies.Add('User');
31end;
32
33destructor TModuleACL.Destroy;
34begin
35 inherited Destroy;
36end;
37
38end.
39
Note: See TracBrowser for help on using the repository browser.