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