.\" This is a wxWidgets manpage page generated from the XML docs .TH wxLongLong 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxLongLong \- A portable 64 bit integer type .SH DESCRIPTION This class represents a signed 64 bit long number. It is implemented using the native 64 bit type where available (machines with 64 bit longs or compilers which have (an analog of) long long type) and uses the emulation code in the other cases which ensures that it is the most efficient solution for working with 64 bit integers independently of the architecture. wxLongLong defines all usual arithmetic operations such as addition, subtraction, bitwise shifts and logical operations as well as multiplication and division (not yet for the machines without native long long ). It also has operators for implicit construction from and conversion to the native long long type if it exists and long . You would usually use this type in exactly the same manner as any other (built-in) arithmetic type. Note that wxLongLong is a signed type, if you want unsigned values use wxULongLong which has exactly the same API as wxLongLong except when explicitly mentioned otherwise. If a native (i.e. supported directly by the compiler) 64 bit integer type was found to exist, wxLongLong_t macro will be defined to correspond to it. Also, in this case only, two additional macros will be defined: wxLongLongFmtSpec for printing 64 bit integers using the standard printf() function (but see also ToString() for a more portable solution) and wxLL for defining 64 bit integer compile-time constants. .SH "PARENTS" .SH "INCLUDE FILES" wx/longlong.h .SH MEMBERS .SS wxLongLong () Default constructor initializes the object to 0. .SS wxLongLong (wxLongLong_t ll) Constructor from native long long (only for compilers supporting it). .SS wxLongLong (long hiunsigned long lo) Constructor from 2 longs: the high and low part are combined into one wxLongLong. .SS wxLongLong& operator operator= (wxLongLong_t ll) Assignment operator from native long long (only for compilers supporting it). .SS wxLongLong Abs () .SS wxLongLong& Abs () Returns an absolute value of wxLongLong - either making a copy (const version) or modifying it in place (the second one). Not in wxULongLong. .SS wxLongLong& Assign (double d) This allows to convert a double value to wxLongLong type. Such conversion is not always possible in which case the result will be silently truncated in a platform-dependent way. Not in wxULongLong. .SS long GetHi () Returns the high 32 bits of 64 bit integer. .SS unsigned long GetLo () Returns the low 32 bits of 64 bit integer. .SS wxLongLong_t GetValue () Convert to native long long (only for compilers supporting it) .SS double ToDouble () Returns the value as double . .SS long ToLong () Truncate wxLongLong to long. If the conversion loses data (i.e. the wxLongLong value is outside the range of built-in long type), an assert will be triggered in debug mode. .SS wxString ToString () Returns the string representation of a wxLongLong. .SS wxLongLong operator+ (const wxLongLong& ll) Adds 2 wxLongLongs together and returns the result. .SS wxLongLong& operator+ (const wxLongLong& ll) Add another wxLongLong to this one. .SS wxLongLong& operator++ () .SS wxLongLong& operator++ (int) Pre/post increment operator. .SS wxLongLong operator- () Returns the value of this wxLongLong with opposite sign. Not in wxULongLong. .SS wxLongLong operator- (const wxLongLong& ll) Subtracts 2 wxLongLongs and returns the result. .SS wxLongLong& operator- (const wxLongLong& ll) Subtracts another wxLongLong from this one. .SS wxLongLong& operator-- () .SS wxLongLong& operator-- (int) Pre/post decrement operator. .SH "SEE ALSO" .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.