[Quantproject-developers] QuantProject/b1_ADT/Histories History.cs, 1.13, 1.14
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:12:42
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT/Histories In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12624/Histories Modified Files: History.cs Log Message: The new revision moves toward an intraday enabled framework. EndOfDayDate time has been removed, DateTime is used now. The code has been changed accordingly. Index: History.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Histories/History.cs,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** History.cs 19 Jan 2008 19:03:05 -0000 1.13 --- History.cs 29 Sep 2008 21:12:26 -0000 1.14 *************** *** 121,125 **** bool returnValue = true; foreach ( DateTime dateTime in comparingHistory.Keys ) ! if ( ! this.ContainsKey( dateTime ) ) returnValue = false; return returnValue; --- 121,125 ---- bool returnValue = true; foreach ( DateTime dateTime in comparingHistory.Keys ) ! if ( ! this.ContainsKey( ExtendedDateTime.GetDate( dateTime ) ) ) returnValue = false; return returnValue; |