(******************************************************************************* * test_client.pas: App to test BeepFp classes * Copyright (C) 2009, Wimpie Nortje * * This file is part of BeepFp. * * BeepFp is free software: you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) * any later version. * * BeepFp 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. See the GNU Lesser General Public License for * more details. * * You should have received a copy of the GNU Lesser General Public License * along with BeepFp. If not, see . * * BeepFp is further covered by a special exception as described in the file * COPYING.modifiedLGPL.txt which should have been included in the * distribution. If not, see * ******************************************************************************* * test_client is an application used to test the BeepFp classes, mainly * used during development. To see how to use the classes in a real application, * see BEEP_Client and BEEP_Listen ******************************************************************************) program test_client; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, LResources, TestClientMain, BeepChannel, BeepChannelPool; {$IFDEF WINDOWS}{$R test_client.rc}{$ENDIF} begin {$I test_client.lrs} Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.