|
Last change
on this file was 18, checked in by chronos, 13 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 | |
|---|
| 1 | unit UModuleACL;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, UModularSystem;
|
|---|
| 9 |
|
|---|
| 10 | type
|
|---|
| 11 | { TModuleACL }
|
|---|
| 12 |
|
|---|
| 13 | TModuleACL = class(TModule)
|
|---|
| 14 | constructor Create; override;
|
|---|
| 15 | destructor Destroy; override;
|
|---|
| 16 | end;
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 | implementation
|
|---|
| 20 |
|
|---|
| 21 | { TModuleACL }
|
|---|
| 22 |
|
|---|
| 23 | constructor TModuleACL.Create;
|
|---|
| 24 | begin
|
|---|
| 25 | inherited;
|
|---|
| 26 | Name := 'UserACL';
|
|---|
| 27 | Title := 'User ACL';
|
|---|
| 28 | Version := '1.0';
|
|---|
| 29 | License := 'GNU/LGPLv3';
|
|---|
| 30 | Dependencies.Add('User');
|
|---|
| 31 | end;
|
|---|
| 32 |
|
|---|
| 33 | destructor TModuleACL.Destroy;
|
|---|
| 34 | begin
|
|---|
| 35 | inherited Destroy;
|
|---|
| 36 | end;
|
|---|
| 37 |
|
|---|
| 38 | end.
|
|---|
| 39 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.