#include <OnixS/SURF/MarketData/FieldValue.h>
Public Member Functions | |
Date () | |
Date (int year, int month, int day) | |
std::string | toString () const |
Public Attributes | |
int | year |
int | month |
int | day |
Definition at line 32 of file FieldValue.h.
Date | ( | ) |
Initialize default instance.
Date | ( | int | year, |
int | month, | ||
int | day | ||
) |
Initializes a new instance to the specified year, month, and day.
day | The day (1 through the number of days in month). |
month | The month (1 through 12). |
year | The year (1 through 9999). |
ArgumentRangeException | If year is less than 1 or greater than 9999 - or - month is less than 1 or greater than 12 - or - day is less than 1 or greater than the number of days in month. |
std::string toString | ( | ) | const |
Returns string representation.
int day |
The day of the month represented by this instance.
Definition at line 53 of file FieldValue.h.
int month |
The month component of the date represented by this instance.
Definition at line 50 of file FieldValue.h.
int year |
The year component of the date represented by this instance.
Definition at line 47 of file FieldValue.h.