Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20998/b4_Business/a07_DataProviders
Modified Files:
HistoricalRawQuoteProvider.cs
Log Message:
This class inherits the HistoricalQuoteProvider class now (in the previous version, it directly implemented the IHistoricalQuoteProvider interface)
Index: HistoricalRawQuoteProvider.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalRawQuoteProvider.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HistoricalRawQuoteProvider.cs 6 Feb 2005 20:10:18 -0000 1.2
--- HistoricalRawQuoteProvider.cs 16 Sep 2007 21:54:40 -0000 1.3
***************
*** 32,41 ****
/// </summary>
[Serializable]
! public class HistoricalRawQuoteProvider : IHistoricalQuoteProvider
{
public HistoricalRawQuoteProvider()
{
}
! public double GetMarketValue( string instrumentKey ,
EndOfDayDateTime endOfDayDateTime )
{
--- 32,41 ----
/// </summary>
[Serializable]
! public class HistoricalRawQuoteProvider : HistoricalQuoteProvider
{
public HistoricalRawQuoteProvider()
{
}
! public override double GetMarketValue( string instrumentKey ,
EndOfDayDateTime endOfDayDateTime )
{
|