[Quantproject-developers] QuantProject/b4_Business/a05_Timing EndOfDayDateTime.cs,1.3,1.4 Historical
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-01-30 19:57:49
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4467/b4_Business/a05_Timing Modified Files: EndOfDayDateTime.cs HistoricalEndOfDayTimer.cs IndexBasedEndOfDayTimer.cs Log Message: Added "[Serializable]" attribute in order to make the Account class serializable. Index: EndOfDayDateTime.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing/EndOfDayDateTime.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** EndOfDayDateTime.cs 8 Jan 2005 11:46:49 -0000 1.3 --- EndOfDayDateTime.cs 30 Jan 2005 19:57:37 -0000 1.4 *************** *** 29,33 **** /// Date time to be used with end of day strategies /// </summary> ! public class EndOfDayDateTime : IComparable { private DateTime dateTime; --- 29,34 ---- /// Date time to be used with end of day strategies /// </summary> ! [Serializable] ! public class EndOfDayDateTime : IComparable { private DateTime dateTime; Index: HistoricalEndOfDayTimer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing/HistoricalEndOfDayTimer.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** HistoricalEndOfDayTimer.cs 15 Jan 2005 10:54:14 -0000 1.5 --- HistoricalEndOfDayTimer.cs 30 Jan 2005 19:57:38 -0000 1.6 *************** *** 30,33 **** --- 30,34 ---- /// IDataStreamer implementation using historical data /// </summary> + [Serializable] public class HistoricalEndOfDayTimer : IEndOfDayTimer { Index: IndexBasedEndOfDayTimer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a05_Timing/IndexBasedEndOfDayTimer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IndexBasedEndOfDayTimer.cs 15 Jan 2005 10:54:20 -0000 1.2 --- IndexBasedEndOfDayTimer.cs 30 Jan 2005 19:57:38 -0000 1.3 *************** *** 32,35 **** --- 32,36 ---- /// for time walking simulation /// </summary> + [Serializable] public class IndexBasedEndOfDayTimer : HistoricalEndOfDayTimer { |