File: designbaseclassdemopkg.pas

package info (click to toggle)
lazarus 0.9.28.2-12
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 93,096 kB
  • ctags: 89,312
  • sloc: pascal: 820,189; xml: 202,194; makefile: 110,323; sh: 2,460; perl: 395; sql: 174; ansic: 133
file content (21 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
 }

unit DesignBaseClassDemoPkg; 

interface

uses
  CustomComponentClass, LazarusPackageIntf; 

implementation

procedure Register; 
begin
  RegisterUnit('CustomComponentClass', @CustomComponentClass.Register); 
end; 

initialization
  RegisterPackage('DesignBaseClassDemoPkg', @Register); 
end.