return wx_truncate_cast(unsigned long, m_ll);
}
+ // convert to double
+#ifdef _MSC_VER
+ double ToDouble() const { return wx_truncate_cast(double, (__int64) m_ll); }
+#else
+ double ToDouble() const { return wx_truncate_cast(double, m_ll); }
+#endif
+
// operations
// addition
wxULongLongNative operator+(const wxULongLongNative& ll) const
return (unsigned long)m_lo;
}
+ // convert to double
+ double ToDouble() const;
+
// operations
// addition
wxULongLongWx operator+(const wxULongLongWx& ll) const;