lazarus/components/anchordocking/restoredebugger/ADRestoreDebugger.lpr
mattias 1ac74567ac anchordocking: restoretest: started treeview
git-svn-id: trunk@39714 -
2013-01-01 18:14:59 +00:00

20 lines
400 B
ObjectPascal

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