[Quantproject-developers] QuantProject/b4_Business/a07_DataProviders HistoricalAdjustedQuoteProvider
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-01-30 19:57:49
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4467/b4_Business/a07_DataProviders Modified Files: HistoricalAdjustedQuoteProvider.cs HistoricalEndOfDayDataStreamer.cs Log Message: Added "[Serializable]" attribute in order to make the Account class serializable. Index: HistoricalEndOfDayDataStreamer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalEndOfDayDataStreamer.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** HistoricalEndOfDayDataStreamer.cs 9 Jan 2005 23:15:19 -0000 1.3 --- HistoricalEndOfDayDataStreamer.cs 30 Jan 2005 19:57:38 -0000 1.4 *************** *** 32,35 **** --- 32,36 ---- /// IDataStreamer implementation using end of day historical data /// </summary> + [Serializable] public class HistoricalEndOfDayDataStreamer : IDataStreamer { Index: HistoricalAdjustedQuoteProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a07_DataProviders/HistoricalAdjustedQuoteProvider.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HistoricalAdjustedQuoteProvider.cs 9 Jan 2005 23:31:53 -0000 1.1 --- HistoricalAdjustedQuoteProvider.cs 30 Jan 2005 19:57:38 -0000 1.2 *************** *** 31,34 **** --- 31,35 ---- /// Returns historical adjusted quotes /// </summary> + [Serializable] public class HistoricalAdjustedQuoteProvider : IHistoricalQuoteProvider { |