mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
d4047ba54c
OnStatus Callback + Creation of a Lazarus Package
21 lines
330 B
ObjectPascal
21 lines
330 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit delphistomp;
|
|
|
|
interface
|
|
|
|
uses
|
|
StompClient, StompTypes, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('delphistomp', @Register);
|
|
end.
|