Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8630/OpenTickDownloader/OTManagement
Modified Files:
BarRequest.cs
Log Message:
the property
public short IntervalValueInSeconds
has been added
Index: BarRequest.cs
===================================================================
RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/OTManagement/BarRequest.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BarRequest.cs 9 Jul 2008 22:20:39 -0000 1.1
--- BarRequest.cs 29 Jan 2009 19:39:37 -0000 1.2
***************
*** 3,7 ****
BarRequest.cs
! Copyright (C) 2008
Glauco Siliprandi
--- 3,7 ----
BarRequest.cs
! Copyright (C) 2008
Glauco Siliprandi
***************
*** 19,23 ****
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
! */
using System;
--- 19,23 ----
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
! */
using System;
***************
*** 30,37 ****
public class BarRequest
{
! private string exchange;
private string symbol;
private DateTime dateTimeForOpenInUTC;
!
public string Exchange {
get { return exchange; }
--- 30,38 ----
public class BarRequest
{
! private string exchange;
private string symbol;
private DateTime dateTimeForOpenInUTC;
! private short intervalValueInSeconds;
!
public string Exchange {
get { return exchange; }
***************
*** 43,54 ****
get { return dateTimeForOpenInUTC; }
}
public BarRequest(
string exchange ,
string symbol ,
! DateTime dateTimeForOpenInUTC )
{
this.exchange = exchange;
this.symbol = symbol;
this.dateTimeForOpenInUTC = dateTimeForOpenInUTC;
}
}
--- 44,60 ----
get { return dateTimeForOpenInUTC; }
}
+ public short IntervalValueInSeconds {
+ get { return this.intervalValueInSeconds; }
+ }
public BarRequest(
string exchange ,
string symbol ,
! DateTime dateTimeForOpenInUTC ,
! short intervalValueInSeconds )
{
this.exchange = exchange;
this.symbol = symbol;
this.dateTimeForOpenInUTC = dateTimeForOpenInUTC;
+ this.intervalValueInSeconds = intervalValueInSeconds;
}
}
|