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