[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader/OTManagement BarRequest.cs
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2009-02-04 19:52:47
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31923/OpenTickDownloader/OTManagement Modified Files: BarRequest.cs Log Message: intervalValueInSeconds is now an int (it was a short in the previous revision) Index: BarRequest.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement/BarRequest.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BarRequest.cs 29 Jan 2009 19:39:37 -0000 1.2 --- BarRequest.cs 4 Feb 2009 19:52:41 -0000 1.3 *************** *** 33,37 **** private string symbol; private DateTime dateTimeForOpenInUTC; ! private short intervalValueInSeconds; public string Exchange { --- 33,37 ---- private string symbol; private DateTime dateTimeForOpenInUTC; ! private int intervalValueInSeconds; public string Exchange { *************** *** 44,48 **** get { return dateTimeForOpenInUTC; } } ! public short IntervalValueInSeconds { get { return this.intervalValueInSeconds; } } --- 44,48 ---- get { return dateTimeForOpenInUTC; } } ! public int IntervalValueInSeconds { get { return this.intervalValueInSeconds; } } *************** *** 51,55 **** string symbol , DateTime dateTimeForOpenInUTC , ! short intervalValueInSeconds ) { this.exchange = exchange; --- 51,55 ---- string symbol , DateTime dateTimeForOpenInUTC , ! int intervalValueInSeconds ) { this.exchange = exchange; |