lazarus/lcl/interfaces/fpgui/interfaces.pp
mattias f5a1444ff0 fpgui intf: form and button from Andrew Haines
git-svn-id: trunk@10899 -
2007-04-06 14:25:02 +00:00

49 lines
1.5 KiB
ObjectPascal

{
/***************************************************************************
Interfaces.pp - determines what interface to use
-------------------
Initial Revision : Thu July 1st CST 1999
***************************************************************************/
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.modifiedLGPL, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
unit interfaces;
{$mode objfpc}
interface
uses
InterfaceBase;
implementation
uses
fpguiint, Forms;
initialization
WidgetSet := TFpGuiWidgetSet.Create;
finalization
WidgetSet.Free;
end.