lazarus/components/anchordocking/restoredebugger/ADRestoreDebugger.lpr
mattias 701c1e773a anchordocking: test restore
git-svn-id: trunk@39662 -
2012-12-27 09:29:55 +00:00

20 lines
384 B
ObjectPascal

program ADRestoreDebugger;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, MainUnit, anchordockpkg
{ you can add units after this };
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TADRestDbg, ADRestDbg);
Application.Run;
end.