[Quantproject-developers] QuantProject/b3_Data/DataProviders IDataStreamer.cs,1.2,1.3
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-12-13 01:48:57
|
Update of /cvsroot/quantproject/QuantProject/b3_Data/DataProviders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9253/b3_Data/DataProviders Modified Files: IDataStreamer.cs Log Message: The IsExchanged method is added to the interface. Index: IDataStreamer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b3_Data/DataProviders/IDataStreamer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IDataStreamer.cs 29 Nov 2004 16:09:09 -0000 1.2 --- IDataStreamer.cs 13 Dec 2004 01:48:45 -0000 1.3 *************** *** 40,43 **** --- 40,50 ---- double GetCurrentBid( string ticker ); double GetCurrentAsk( string ticker ); + /// <summary> + /// true iif the given ticker is exchanged at the time + /// the method is invoked + /// </summary> + /// <param name="ticker"></param> + /// <returns></returns> + bool IsExchanged( string ticker ); } } |