git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5223
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxDateTime() { }
// from time_t: seconds since the Epoch 00:00:00 UTC, Jan 1, 1970)
wxDateTime() { }
// from time_t: seconds since the Epoch 00:00:00 UTC, Jan 1, 1970)
+#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
+// VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
inline wxDateTime(time_t timet);
inline wxDateTime(time_t timet);
// from broken down time/date (only for standard Unix range)
inline wxDateTime(const struct tm& tm);
// from broken down time/date (any range)
// from broken down time/date (only for standard Unix range)
inline wxDateTime(const struct tm& tm);
// from broken down time/date (any range)
// set to the current time
inline wxDateTime& SetToCurrent();
// set to the current time
inline wxDateTime& SetToCurrent();
+#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
+// VA C++ confuses this with wxDateTime(double jdn) thinking it is a duplicate declaration
// set to given time_t value
inline wxDateTime& Set(time_t timet);
// set to given time_t value
inline wxDateTime& Set(time_t timet);
// set to given broken down time/date
wxDateTime& Set(const struct tm& tm);
// set to given broken down time/date
wxDateTime& Set(const struct tm& tm);
inline time_t GetTicks() const;
// get the year (returns Inv_Year if date is invalid)
inline time_t GetTicks() const;
// get the year (returns Inv_Year if date is invalid)
- int GetYear(const TimeZone& tz = Local) const
+ int GetYear(const TimeZone& tz = Local) const
{ return GetTm(tz).year; }
// get the month (Inv_Month if date is invalid)
{ return GetTm(tz).year; }
// get the month (Inv_Month if date is invalid)
- Month GetMonth(const TimeZone& tz = Local) const
+ Month GetMonth(const TimeZone& tz = Local) const
{ return (Month)GetTm(tz).mon; }
// get the month day (in 1..31 range, 0 if date is invalid)
{ return (Month)GetTm(tz).mon; }
// get the month day (in 1..31 range, 0 if date is invalid)
- wxDateTime_t GetDay(const TimeZone& tz = Local) const
+ wxDateTime_t GetDay(const TimeZone& tz = Local) const
{ return GetTm(tz).mday; }
// get the day of the week (Inv_WeekDay if date is invalid)
{ return GetTm(tz).mday; }
// get the day of the week (Inv_WeekDay if date is invalid)
- WeekDay GetWeekDay(const TimeZone& tz = Local) const
+ WeekDay GetWeekDay(const TimeZone& tz = Local) const
{ return GetTm(tz).GetWeekDay(); }
// get the hour of the day
{ return GetTm(tz).GetWeekDay(); }
// get the hour of the day
- wxDateTime_t GetHour(const TimeZone& tz = Local) const
+ wxDateTime_t GetHour(const TimeZone& tz = Local) const
{ return GetTm(tz).hour; }
// get the minute
{ return GetTm(tz).hour; }
// get the minute
- wxDateTime_t GetMinute(const TimeZone& tz = Local) const
+ wxDateTime_t GetMinute(const TimeZone& tz = Local) const
{ return GetTm(tz).min; }
// get the second
{ return GetTm(tz).min; }
// get the second
- wxDateTime_t GetSecond(const TimeZone& tz = Local) const
+ wxDateTime_t GetSecond(const TimeZone& tz = Local) const
{ return GetTm(tz).sec; }
// get milliseconds
{ return GetTm(tz).sec; }
// get milliseconds
- wxDateTime_t GetMillisecond(const TimeZone& tz = Local) const
+ wxDateTime_t GetMillisecond(const TimeZone& tz = Local) const
{ return GetTm(tz).msec; }
// get the day since the year start (1..366, 0 if date is invalid)
{ return GetTm(tz).msec; }
// get the day since the year start (1..366, 0 if date is invalid)
return wxDateTime(*tm);
}
return wxDateTime(*tm);
}
+#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
wxDateTime& wxDateTime::Set(time_t timet)
{
// assign first to avoid long multiplication overflow!
wxDateTime& wxDateTime::Set(time_t timet)
{
// assign first to avoid long multiplication overflow!
wxDateTime& wxDateTime::SetToCurrent()
{
return *this = Now();
}
wxDateTime& wxDateTime::SetToCurrent()
{
return *this = Now();
}
+#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
wxDateTime::wxDateTime(time_t timet)
{
Set(timet);
}
wxDateTime::wxDateTime(time_t timet)
{
Set(timet);
}
wxDateTime::wxDateTime(const struct tm& tm)
{
wxDateTime::wxDateTime(const struct tm& tm)
{