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 | |
---|
1 | unit IDEModulePascal;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, ModularSystem;
|
---|
7 |
|
---|
8 | type
|
---|
9 |
|
---|
10 | { TIDEModulePascal }
|
---|
11 |
|
---|
12 | TIDEModulePascal = class(TModule)
|
---|
13 | constructor Create(AOwner: TComponent); override;
|
---|
14 | end;
|
---|
15 |
|
---|
16 | implementation
|
---|
17 |
|
---|
18 | { TIDEModulePascal }
|
---|
19 |
|
---|
20 | constructor TIDEModulePascal.Create(AOwner: TComponent);
|
---|
21 | begin
|
---|
22 | inherited;
|
---|
23 | Identification := 'Pascal';
|
---|
24 | Title := 'Pascal';
|
---|
25 | Version := '0.1';
|
---|
26 | end;
|
---|
27 |
|
---|
28 | end.
|
---|
29 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.