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