1
0
mirror of https://github.com/netdata-be/libnodave synced 2025-10-27 00:57:54 +08:00
libnodave/DelphiComponent/Demo/Lazarus/NoDaveDemo.lpr
2012-06-01 10:15:12 +02:00

17 lines
323 B
ObjectPascal
Executable File

program NoDaveDemo;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Main, Editor;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TConnectionEditor, ConnectionEditor);
Application.Run;
end.