1{
2 /***************************************************************************
3                 Interfaces.pp  -  determines what interface to use
4
5 ***************************************************************************/
6
7 *****************************************************************************
8 *  This file is part of the Lazarus Component Library (LCL)
9 *
10 *  See the file COPYING.modifiedLGPL.txt, included in this distribution,
11 *  for details about the license.
12 *****************************************************************************
13}
14unit Interfaces;
15
16{$mode objfpc}{$H+}
17
18interface
19
20uses
21  InterfaceBase;
22
23implementation
24
25uses
26  NoGUIInt, {%H-}NoGUIWSFactory{%H-}, Forms;
27
28initialization
29  CreateWidgetset(TNoGUIWidgetSet);
30
31finalization
32  FreeWidgetSet;
33
34end.
35