24 lines
376 B
ObjectPascal
24 lines
376 B
ObjectPascal
{
|
|
:: Registers the GraphicList components
|
|
::
|
|
:: Last changed: $Date$
|
|
:: Revision: $Rev$
|
|
:: Author: $Author$
|
|
}
|
|
unit X2CLGLReg;
|
|
|
|
interface
|
|
procedure Register;
|
|
|
|
implementation
|
|
uses
|
|
Classes,
|
|
X2CLGraphicList;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents('X²Software', [TX2GraphicContainer, TX2GraphicList]);
|
|
end;
|
|
|
|
end.
|
|
|