[Quantproject-developers] QuantProject/b4_Business/a2_Strategies IEndOfDayStrategy.cs, 1.1, 1.2
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-01-19 19:07:09
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18476/b4_Business/a2_Strategies Modified Files: IEndOfDayStrategy.cs Log Message: The new delegate public delegate void NewLogItemEventHandler( Object sender , NewLogItemEventArgs eventArgs ); has been added (for the NewLogItem event, to be used by strategies) Index: IEndOfDayStrategy.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/IEndOfDayStrategy.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IEndOfDayStrategy.cs 2 Aug 2005 23:04:43 -0000 1.1 --- IEndOfDayStrategy.cs 19 Jan 2008 19:07:05 -0000 1.2 *************** *** 24,27 **** --- 24,28 ---- using QuantProject.Business.Financial.Accounting.Transactions; + using QuantProject.Business.Strategies.Logging; using QuantProject.Business.Timing; *************** *** 29,32 **** --- 30,36 ---- namespace QuantProject.Business.Strategies { + public delegate void NewLogItemEventHandler( + Object sender , NewLogItemEventArgs eventArgs ); + /// <summary> /// Interface to be implemented by end of day strategies |