source: trunk/IDE/Modules/Pascal/IDEModulePascal.pas

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 430 bytes
Line 
1unit IDEModulePascal;
2
3interface
4
5uses
6 Classes, SysUtils, ModularSystem;
7
8type
9
10 { TIDEModulePascal }
11
12 TIDEModulePascal = class(TModule)
13 constructor Create(AOwner: TComponent); override;
14 end;
15
16implementation
17
18{ TIDEModulePascal }
19
20constructor TIDEModulePascal.Create(AOwner: TComponent);
21begin
22 inherited;
23 Identification := 'Pascal';
24 Title := 'Pascal';
25 Version := '0.1';
26end;
27
28end.
29
Note: See TracBrowser for help on using the repository browser.