[Delivery-boy-cvs] client/DeliveryBoyC DeliveryBoyC.prjx,1.7,1.8 Global.cs,1.1,1.2 Main.cs,1.10,1.11
Status: Planning
Brought to you by:
mkloubert
From: Marcel K. <gen...@us...> - 2005-04-27 15:34:51
|
Update of /cvsroot/delivery-boy/client/DeliveryBoyC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8587/DeliveryBoyC Modified Files: DeliveryBoyC.prjx Global.cs Main.cs Log Message: - some source code optimizations Index: DeliveryBoyC.prjx =================================================================== RCS file: /cvsroot/delivery-boy/client/DeliveryBoyC/DeliveryBoyC.prjx,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DeliveryBoyC.prjx 13 Feb 2005 16:46:53 -0000 1.7 --- DeliveryBoyC.prjx 27 Apr 2005 15:34:34 -0000 1.8 *************** *** 4,10 **** <File name=".\AssemblyInfo.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> <File name=".\classes" subtype="Directory" buildaction="Compile" dependson="" data="" /> - <File name=".\classes\clsEasySocket.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> <File name=".\classes\clsEasyTCPServer.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> <File name=".\Global.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> </Contents> <References /> --- 4,10 ---- <File name=".\AssemblyInfo.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> <File name=".\classes" subtype="Directory" buildaction="Compile" dependson="" data="" /> <File name=".\classes\clsEasyTCPServer.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> <File name=".\Global.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> + <File name="..\classes\clsEasySocket.cs" subtype="Code" buildaction="Compile" dependson="" data="" /> </Contents> <References /> Index: Main.cs =================================================================== RCS file: /cvsroot/delivery-boy/client/DeliveryBoyC/Main.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Main.cs 13 Feb 2005 16:46:53 -0000 1.10 --- Main.cs 27 Apr 2005 15:34:34 -0000 1.11 *************** *** 25,29 **** using System.Reflection; ! namespace DeliveryBoyC { /*! \class MainClass Main.cs "Main.cs" --- 25,29 ---- using System.Reflection; ! namespace DeliveryBoyClient { /*! \class MainClass Main.cs "Main.cs" *************** *** 45,48 **** --- 45,51 ---- * \note * $Log$ + * Revision 1.11 2005/04/27 15:34:34 generalpd + * - some source code optimizations + * * Revision 1.10 2005/02/13 16:46:53 generalpd * - moved application run code to seperate method Run() Index: Global.cs =================================================================== RCS file: /cvsroot/delivery-boy/client/DeliveryBoyC/Global.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Global.cs 13 Feb 2005 16:46:53 -0000 1.1 --- Global.cs 27 Apr 2005 15:34:34 -0000 1.2 *************** *** 40,43 **** --- 40,46 ---- * \note * $Log$ + * Revision 1.2 2005/04/27 15:34:34 generalpd + * - some source code optimizations + * * Revision 1.1 2005/02/13 16:46:53 generalpd * - moved application run code to seperate method Run() *************** *** 50,54 **** */ ! public abstract class clsGlobal : System.Object { /// Name of this application --- 53,57 ---- */ ! public sealed class clsGlobal : System.Object { /// Name of this application |