#pragma hdrstop
#endif
+#if wxUSE_LONGLONG
+
#include "wx/longlong.h"
#include <memory.h> // for memset()
return temp;
}
+#if wxUSE_STD_IOSTREAM
+
// input/output
-std::ostream& operator<< (std::ostream& o, const wxLongLongNative& ll)
+ostream& operator<< (ostream& o, const wxLongLongNative& ll)
{
char result[65];
return o << result;
}
+#endif // wxUSE_STD_IOSTREAM
+
#endif // wxUSE_LONGLONG_NATIVE
#if wxUSE_LONGLONG_WX
return temp;
}
-// input/output
+#if wxUSE_STD_IOSTREAM
-std::ostream& operator<< (std::ostream& o, const wxLongLongWx& ll)
+// input/output
+ostream& operator<< (ostream& o, const wxLongLongWx& ll)
{
char result[65];
return o << result;
}
-#endif wxUSE_LONGLONG_WX
+#endif // wxUSE_STD_IOSTREAM
+
+#endif // wxUSE_LONGLONG_NATIVE
+#endif // wxUSE_LONGLONG