[Quantproject-developers] QuantProject/b3_Data/DataProviders Quote.cs, 1.2, 1.3
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-09-29 21:13:05
|
Update of /cvsroot/quantproject/QuantProject/b3_Data/DataProviders In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12746/DataProviders Modified Files: Quote.cs Log Message: no message Index: Quote.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b3_Data/DataProviders/Quote.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Quote.cs 29 Nov 2004 16:19:16 -0000 1.2 --- Quote.cs 29 Sep 2008 21:12:48 -0000 1.3 *************** *** 33,37 **** private string ticker; private double value; ! private ExtendedDateTime extendedDateTime; public string Ticker --- 33,37 ---- private string ticker; private double value; ! private DateTime dateTime; public string Ticker *************** *** 47,54 **** } ! public ExtendedDateTime ExtendedDateTime { ! get { return this.extendedDateTime; } ! set { this.extendedDateTime = value; } } --- 47,54 ---- } ! public DateTime DateTime { ! get { return this.dateTime; } ! set { this.dateTime = value; } } |