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