]> git.saurik.com Git - wxWidgets.git/blame - include/wx/longlong.h
Add wxDataViewRendererBase::GetEffectiveAlignment() and use it.
[wxWidgets.git] / include / wx / longlong.h
CommitLineData
8b81872f
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/longlong.h
3// Purpose: declaration of wxLongLong class - best implementation of a 64
4// bit integer for the current platform.
5// Author: Jeffrey C. Ollie <jeff@ollie.clive.ia.us>, Vadim Zeitlin
8b81872f
VZ
6// Modified by:
7// Created: 10.02.99
8b81872f 8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
8b81872f
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LONGLONG_H
13#define _WX_LONGLONG_H
14
1ef54dcf 15#include "wx/defs.h"
216a72f3
VZ
16
17#if wxUSE_LONGLONG
18
3a994742 19#include "wx/string.h"
1ef54dcf
VZ
20
21#include <limits.h> // for LONG_MAX
22
2a310492
VZ
23// define this to compile wxLongLongWx in "test" mode: the results of all
24// calculations will be compared with the real results taken from
617ec456
VZ
25// wxLongLongNative -- this is extremely useful to find the bugs in
26// wxLongLongWx class!
27
f6bcfd97 28// #define wxLONGLONG_TEST_MODE
2a310492
VZ
29
30#ifdef wxLONGLONG_TEST_MODE
31 #define wxUSE_LONGLONG_WX 1
32 #define wxUSE_LONGLONG_NATIVE 1
33#endif // wxLONGLONG_TEST_MODE
2ea24d9f 34
8b81872f
VZ
35// ----------------------------------------------------------------------------
36// decide upon which class we will use
37// ----------------------------------------------------------------------------
38
8fb37472 39#ifndef wxLongLong_t
9c2882d9 40 // both warning and pragma warning are not portable, but at least an
2b5f62a0 41 // unknown pragma should never be an error -- except that, actually, some
58ef67ab
VZ
42 // broken compilers don't like it, so we have to disable it in this case
43 // <sigh>
216a72f3
VZ
44 #ifdef __GNUC__
45 #warning "Your compiler does not appear to support 64 bit "\
46 "integers, using emulation class instead.\n" \
47 "Please report your compiler version to " \
48 "wx-dev@lists.wxwidgets.org!"
49 #elif !(defined(__WATCOMC__) || defined(__VISAGECPP__))
8fb37472
VZ
50 #pragma warning "Your compiler does not appear to support 64 bit "\
51 "integers, using emulation class instead.\n" \
52 "Please report your compiler version to " \
77ffb593 53 "wx-dev@lists.wxwidgets.org!"
8fb37472 54 #endif
8db6ac55 55
8b81872f
VZ
56 #define wxUSE_LONGLONG_WX 1
57#endif // compiler
58
59// the user may predefine wxUSE_LONGLONG_NATIVE and/or wxUSE_LONGLONG_NATIVE
60// to disable automatic testing (useful for the test program which defines
61// both classes) but by default we only use one class
2ea24d9f 62#if (defined(wxUSE_LONGLONG_WX) && wxUSE_LONGLONG_WX) || !defined(wxLongLong_t)
2a310492 63 // don't use both classes unless wxUSE_LONGLONG_NATIVE was explicitly set:
384223b3 64 // this is useful in test programs and only there
2a310492
VZ
65 #ifndef wxUSE_LONGLONG_NATIVE
66 #define wxUSE_LONGLONG_NATIVE 0
67 #endif
68
b5dbe15d
VS
69 class WXDLLIMPEXP_FWD_BASE wxLongLongWx;
70 class WXDLLIMPEXP_FWD_BASE wxULongLongWx;
92f5ff59
JS
71#if defined(__VISUALC__) && !defined(__WIN32__)
72 #define wxLongLong wxLongLongWx
8e38fd1f 73 #define wxULongLong wxULongLongWx
92f5ff59 74#else
8b81872f 75 typedef wxLongLongWx wxLongLong;
8e38fd1f 76 typedef wxULongLongWx wxULongLong;
92f5ff59
JS
77#endif
78
b76b015e
VZ
79#else
80 // if nothing is defined, use native implementation by default, of course
81 #ifndef wxUSE_LONGLONG_NATIVE
82 #define wxUSE_LONGLONG_NATIVE 1
83 #endif
8b81872f
VZ
84#endif
85
86#ifndef wxUSE_LONGLONG_WX
87 #define wxUSE_LONGLONG_WX 0
b5dbe15d
VS
88 class WXDLLIMPEXP_FWD_BASE wxLongLongNative;
89 class WXDLLIMPEXP_FWD_BASE wxULongLongNative;
8b81872f 90 typedef wxLongLongNative wxLongLong;
8e38fd1f 91 typedef wxULongLongNative wxULongLong;
8b81872f
VZ
92#endif
93
94// NB: if both wxUSE_LONGLONG_WX and NATIVE are defined, the user code should
95// typedef wxLongLong as it wants, we don't do it
96
97// ----------------------------------------------------------------------------
98// choose the appropriate class
99// ----------------------------------------------------------------------------
100
101// we use iostream for wxLongLong output
65f19af1 102#include "wx/iosfwrap.h"
8b81872f
VZ
103
104#if wxUSE_LONGLONG_NATIVE
105
bddd7a8d 106class WXDLLIMPEXP_BASE wxLongLongNative
8b81872f
VZ
107{
108public:
109 // ctors
110 // default ctor initializes to 0
2e403d6d 111 wxLongLongNative() : m_ll(0) { }
8b81872f 112 // from long long
2e403d6d 113 wxLongLongNative(wxLongLong_t ll) : m_ll(ll) { }
8b81872f 114 // from 2 longs
05059b3a 115 wxLongLongNative(wxInt32 hi, wxUint32 lo)
8b81872f 116 {
05059b3a 117 // cast to wxLongLong_t first to avoid precision loss!
8b81872f
VZ
118 m_ll = ((wxLongLong_t) hi) << 32;
119 m_ll |= (wxLongLong_t) lo;
120 }
842215bb
WS
121#if wxUSE_LONGLONG_WX
122 wxLongLongNative(wxLongLongWx ll);
123#endif
8b81872f 124
2f02cb89 125 // default copy ctor is ok
8b81872f
VZ
126
127 // no dtor
128
129 // assignment operators
130 // from native 64 bit integer
38b2e0de 131#ifndef wxLongLongIsLong
8b81872f
VZ
132 wxLongLongNative& operator=(wxLongLong_t ll)
133 { m_ll = ll; return *this; }
216a72f3
VZ
134 wxLongLongNative& operator=(wxULongLong_t ll)
135 { m_ll = ll; return *this; }
38b2e0de 136#endif // !wxLongLongNative
216a72f3 137 wxLongLongNative& operator=(const wxULongLongNative &ll);
a4d2944e
VZ
138 wxLongLongNative& operator=(int l)
139 { m_ll = l; return *this; }
216a72f3
VZ
140 wxLongLongNative& operator=(long l)
141 { m_ll = l; return *this; }
62675f1e
VZ
142 wxLongLongNative& operator=(unsigned int l)
143 { m_ll = l; return *this; }
216a72f3
VZ
144 wxLongLongNative& operator=(unsigned long l)
145 { m_ll = l; return *this; }
842215bb
WS
146#if wxUSE_LONGLONG_WX
147 wxLongLongNative& operator=(wxLongLongWx ll);
216a72f3 148 wxLongLongNative& operator=(const class wxULongLongWx &ll);
842215bb
WS
149#endif
150
8b81872f 151
cd0b1709
VZ
152 // from double: this one has an explicit name because otherwise we
153 // would have ambiguity with "ll = int" and also because we don't want
154 // to have implicit conversions between doubles and wxLongLongs
155 wxLongLongNative& Assign(double d)
156 { m_ll = (wxLongLong_t)d; return *this; }
157
8b81872f
VZ
158 // assignment operators from wxLongLongNative is ok
159
160 // accessors
161 // get high part
05059b3a
VZ
162 wxInt32 GetHi() const
163 { return wx_truncate_cast(wxInt32, m_ll >> 32); }
8b81872f 164 // get low part
05059b3a
VZ
165 wxUint32 GetLo() const
166 { return wx_truncate_cast(wxUint32, m_ll); }
8b81872f 167
b76b015e 168 // get absolute value
2ea24d9f 169 wxLongLongNative Abs() const { return wxLongLongNative(*this).Abs(); }
b76b015e
VZ
170 wxLongLongNative& Abs() { if ( m_ll < 0 ) m_ll = -m_ll; return *this; }
171
8b81872f
VZ
172 // convert to native long long
173 wxLongLong_t GetValue() const { return m_ll; }
174
90e572f1 175 // convert to long with range checking in debug mode (only!)
1ef54dcf
VZ
176 long ToLong() const
177 {
178 wxASSERT_MSG( (m_ll >= LONG_MIN) && (m_ll <= LONG_MAX),
9a83f860 179 wxT("wxLongLong to long conversion loss of precision") );
1ef54dcf 180
17a1ebd1 181 return wx_truncate_cast(long, m_ll);
1ef54dcf
VZ
182 }
183
e7aaf2de 184 // convert to double
17a1ebd1 185 double ToDouble() const { return wx_truncate_cast(double, m_ll); }
e7aaf2de 186
2f02cb89
VZ
187 // don't provide implicit conversion to wxLongLong_t or we will have an
188 // ambiguity for all arithmetic operations
b76b015e 189 //operator wxLongLong_t() const { return m_ll; }
8b81872f
VZ
190
191 // operations
192 // addition
193 wxLongLongNative operator+(const wxLongLongNative& ll) const
194 { return wxLongLongNative(m_ll + ll.m_ll); }
195 wxLongLongNative& operator+=(const wxLongLongNative& ll)
196 { m_ll += ll.m_ll; return *this; }
197
198 wxLongLongNative operator+(const wxLongLong_t ll) const
199 { return wxLongLongNative(m_ll + ll); }
200 wxLongLongNative& operator+=(const wxLongLong_t ll)
201 { m_ll += ll; return *this; }
202
203 // pre increment
204 wxLongLongNative& operator++()
205 { m_ll++; return *this; }
206
207 // post increment
2e403d6d
GD
208 wxLongLongNative operator++(int)
209 { wxLongLongNative value(*this); m_ll++; return value; }
8b81872f
VZ
210
211 // negation operator
212 wxLongLongNative operator-() const
213 { return wxLongLongNative(-m_ll); }
3a994742 214 wxLongLongNative& Negate() { m_ll = -m_ll; return *this; }
8b81872f
VZ
215
216 // subtraction
217 wxLongLongNative operator-(const wxLongLongNative& ll) const
218 { return wxLongLongNative(m_ll - ll.m_ll); }
219 wxLongLongNative& operator-=(const wxLongLongNative& ll)
220 { m_ll -= ll.m_ll; return *this; }
221
222 wxLongLongNative operator-(const wxLongLong_t ll) const
223 { return wxLongLongNative(m_ll - ll); }
224 wxLongLongNative& operator-=(const wxLongLong_t ll)
225 { m_ll -= ll; return *this; }
226
227 // pre decrement
228 wxLongLongNative& operator--()
229 { m_ll--; return *this; }
230
231 // post decrement
2e403d6d
GD
232 wxLongLongNative operator--(int)
233 { wxLongLongNative value(*this); m_ll--; return value; }
8b81872f
VZ
234
235 // shifts
236 // left shift
237 wxLongLongNative operator<<(int shift) const
d0ee33f5 238 { return wxLongLongNative(m_ll << shift); }
8b81872f
VZ
239 wxLongLongNative& operator<<=(int shift)
240 { m_ll <<= shift; return *this; }
241
242 // right shift
243 wxLongLongNative operator>>(int shift) const
d0ee33f5 244 { return wxLongLongNative(m_ll >> shift); }
8b81872f
VZ
245 wxLongLongNative& operator>>=(int shift)
246 { m_ll >>= shift; return *this; }
247
248 // bitwise operators
249 wxLongLongNative operator&(const wxLongLongNative& ll) const
250 { return wxLongLongNative(m_ll & ll.m_ll); }
251 wxLongLongNative& operator&=(const wxLongLongNative& ll)
252 { m_ll &= ll.m_ll; return *this; }
253
254 wxLongLongNative operator|(const wxLongLongNative& ll) const
255 { return wxLongLongNative(m_ll | ll.m_ll); }
256 wxLongLongNative& operator|=(const wxLongLongNative& ll)
257 { m_ll |= ll.m_ll; return *this; }
258
259 wxLongLongNative operator^(const wxLongLongNative& ll) const
260 { return wxLongLongNative(m_ll ^ ll.m_ll); }
261 wxLongLongNative& operator^=(const wxLongLongNative& ll)
262 { m_ll ^= ll.m_ll; return *this; }
263
b76b015e 264 // multiplication/division
8b81872f
VZ
265 wxLongLongNative operator*(const wxLongLongNative& ll) const
266 { return wxLongLongNative(m_ll * ll.m_ll); }
2f02cb89
VZ
267 wxLongLongNative operator*(long l) const
268 { return wxLongLongNative(m_ll * l); }
8b81872f
VZ
269 wxLongLongNative& operator*=(const wxLongLongNative& ll)
270 { m_ll *= ll.m_ll; return *this; }
2f02cb89
VZ
271 wxLongLongNative& operator*=(long l)
272 { m_ll *= l; return *this; }
8b81872f
VZ
273
274 wxLongLongNative operator/(const wxLongLongNative& ll) const
275 { return wxLongLongNative(m_ll / ll.m_ll); }
b76b015e
VZ
276 wxLongLongNative operator/(long l) const
277 { return wxLongLongNative(m_ll / l); }
8b81872f
VZ
278 wxLongLongNative& operator/=(const wxLongLongNative& ll)
279 { m_ll /= ll.m_ll; return *this; }
2f02cb89
VZ
280 wxLongLongNative& operator/=(long l)
281 { m_ll /= l; return *this; }
8b81872f
VZ
282
283 wxLongLongNative operator%(const wxLongLongNative& ll) const
284 { return wxLongLongNative(m_ll % ll.m_ll); }
b76b015e
VZ
285 wxLongLongNative operator%(long l) const
286 { return wxLongLongNative(m_ll % l); }
8b81872f
VZ
287
288 // comparison
289 bool operator==(const wxLongLongNative& ll) const
290 { return m_ll == ll.m_ll; }
b76b015e
VZ
291 bool operator==(long l) const
292 { return m_ll == l; }
8b81872f
VZ
293 bool operator!=(const wxLongLongNative& ll) const
294 { return m_ll != ll.m_ll; }
b76b015e
VZ
295 bool operator!=(long l) const
296 { return m_ll != l; }
8b81872f
VZ
297 bool operator<(const wxLongLongNative& ll) const
298 { return m_ll < ll.m_ll; }
b76b015e
VZ
299 bool operator<(long l) const
300 { return m_ll < l; }
8b81872f
VZ
301 bool operator>(const wxLongLongNative& ll) const
302 { return m_ll > ll.m_ll; }
b76b015e
VZ
303 bool operator>(long l) const
304 { return m_ll > l; }
8b81872f
VZ
305 bool operator<=(const wxLongLongNative& ll) const
306 { return m_ll <= ll.m_ll; }
b76b015e
VZ
307 bool operator<=(long l) const
308 { return m_ll <= l; }
8b81872f
VZ
309 bool operator>=(const wxLongLongNative& ll) const
310 { return m_ll >= ll.m_ll; }
b76b015e
VZ
311 bool operator>=(long l) const
312 { return m_ll >= l; }
8b81872f
VZ
313
314 // miscellaneous
3a994742
VZ
315
316 // return the string representation of this number
317 wxString ToString() const;
318
8b81872f
VZ
319 // conversion to byte array: returns a pointer to static buffer!
320 void *asArray() const;
321
fcc3d7cb 322#if wxUSE_STD_IOSTREAM
8b81872f 323 // input/output
a353dc98
VZ
324 friend WXDLLIMPEXP_BASE
325 wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongNative&);
fcc3d7cb 326#endif
8b81872f 327
a353dc98
VZ
328 friend WXDLLIMPEXP_BASE
329 wxString& operator<<(wxString&, const wxLongLongNative&);
51496782 330
216a72f3
VZ
331#if wxUSE_STREAMS
332 friend WXDLLIMPEXP_BASE
333 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongNative&);
334 friend WXDLLIMPEXP_BASE
335 class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongNative&);
336#endif
337
8b81872f
VZ
338private:
339 wxLongLong_t m_ll;
340};
341
8e38fd1f 342
bddd7a8d 343class WXDLLIMPEXP_BASE wxULongLongNative
8e38fd1f
RL
344{
345public:
346 // ctors
347 // default ctor initializes to 0
2e403d6d 348 wxULongLongNative() : m_ll(0) { }
8e38fd1f 349 // from long long
60582201 350 wxULongLongNative(wxULongLong_t ll) : m_ll(ll) { }
8e38fd1f 351 // from 2 longs
05059b3a 352 wxULongLongNative(wxUint32 hi, wxUint32 lo) : m_ll(0)
8e38fd1f 353 {
05059b3a 354 // cast to wxLongLong_t first to avoid precision loss!
60582201
WS
355 m_ll = ((wxULongLong_t) hi) << 32;
356 m_ll |= (wxULongLong_t) lo;
8e38fd1f
RL
357 }
358
216a72f3
VZ
359#if wxUSE_LONGLONG_WX
360 wxULongLongNative(const class wxULongLongWx &ll);
361#endif
362
8e38fd1f
RL
363 // default copy ctor is ok
364
365 // no dtor
366
367 // assignment operators
368 // from native 64 bit integer
38b2e0de 369#ifndef wxLongLongIsLong
60582201 370 wxULongLongNative& operator=(wxULongLong_t ll)
8e38fd1f 371 { m_ll = ll; return *this; }
216a72f3
VZ
372 wxULongLongNative& operator=(wxLongLong_t ll)
373 { m_ll = ll; return *this; }
38b2e0de 374#endif // !wxLongLongNative
a4d2944e
VZ
375 wxULongLongNative& operator=(int l)
376 { m_ll = l; return *this; }
216a72f3
VZ
377 wxULongLongNative& operator=(long l)
378 { m_ll = l; return *this; }
62675f1e
VZ
379 wxULongLongNative& operator=(unsigned int l)
380 { m_ll = l; return *this; }
216a72f3
VZ
381 wxULongLongNative& operator=(unsigned long l)
382 { m_ll = l; return *this; }
383 wxULongLongNative& operator=(const wxLongLongNative &ll)
384 { m_ll = ll.GetValue(); return *this; }
385#if wxUSE_LONGLONG_WX
386 wxULongLongNative& operator=(wxLongLongWx ll);
387 wxULongLongNative& operator=(const class wxULongLongWx &ll);
388#endif
8e38fd1f
RL
389
390 // assignment operators from wxULongLongNative is ok
391
392 // accessors
393 // get high part
05059b3a
VZ
394 wxUint32 GetHi() const
395 { return wx_truncate_cast(wxUint32, m_ll >> 32); }
8e38fd1f 396 // get low part
05059b3a
VZ
397 wxUint32 GetLo() const
398 { return wx_truncate_cast(wxUint32, m_ll); }
8e38fd1f
RL
399
400 // convert to native ulong long
60582201 401 wxULongLong_t GetValue() const { return m_ll; }
8e38fd1f 402
90e572f1 403 // convert to ulong with range checking in debug mode (only!)
8e38fd1f
RL
404 unsigned long ToULong() const
405 {
ebbbd51b 406 wxASSERT_MSG( m_ll <= ULONG_MAX,
9a83f860 407 wxT("wxULongLong to long conversion loss of precision") );
8e38fd1f 408
17a1ebd1 409 return wx_truncate_cast(unsigned long, m_ll);
8e38fd1f
RL
410 }
411
d870a030 412 // convert to double
4c24ca50
VZ
413 //
414 // For some completely obscure reasons compiling the cast below with
415 // VC6 in DLL builds only (!) results in "error C2520: conversion from
416 // unsigned __int64 to double not implemented, use signed __int64" so
417 // we must use a different version for that compiler.
418#ifdef __VISUALC6__
419 double ToDouble() const;
420#else
d870a030 421 double ToDouble() const { return wx_truncate_cast(double, m_ll); }
4c24ca50 422#endif
d870a030 423
8e38fd1f
RL
424 // operations
425 // addition
426 wxULongLongNative operator+(const wxULongLongNative& ll) const
427 { return wxULongLongNative(m_ll + ll.m_ll); }
428 wxULongLongNative& operator+=(const wxULongLongNative& ll)
429 { m_ll += ll.m_ll; return *this; }
430
60582201 431 wxULongLongNative operator+(const wxULongLong_t ll) const
8e38fd1f 432 { return wxULongLongNative(m_ll + ll); }
60582201 433 wxULongLongNative& operator+=(const wxULongLong_t ll)
8e38fd1f
RL
434 { m_ll += ll; return *this; }
435
436 // pre increment
437 wxULongLongNative& operator++()
438 { m_ll++; return *this; }
439
440 // post increment
2e403d6d
GD
441 wxULongLongNative operator++(int)
442 { wxULongLongNative value(*this); m_ll++; return value; }
8e38fd1f
RL
443
444 // subtraction
445 wxULongLongNative operator-(const wxULongLongNative& ll) const
446 { return wxULongLongNative(m_ll - ll.m_ll); }
447 wxULongLongNative& operator-=(const wxULongLongNative& ll)
448 { m_ll -= ll.m_ll; return *this; }
449
60582201 450 wxULongLongNative operator-(const wxULongLong_t ll) const
8e38fd1f 451 { return wxULongLongNative(m_ll - ll); }
60582201 452 wxULongLongNative& operator-=(const wxULongLong_t ll)
8e38fd1f
RL
453 { m_ll -= ll; return *this; }
454
455 // pre decrement
456 wxULongLongNative& operator--()
457 { m_ll--; return *this; }
458
459 // post decrement
2e403d6d
GD
460 wxULongLongNative operator--(int)
461 { wxULongLongNative value(*this); m_ll--; return value; }
8e38fd1f
RL
462
463 // shifts
464 // left shift
465 wxULongLongNative operator<<(int shift) const
d0ee33f5 466 { return wxULongLongNative(m_ll << shift); }
8e38fd1f
RL
467 wxULongLongNative& operator<<=(int shift)
468 { m_ll <<= shift; return *this; }
469
470 // right shift
471 wxULongLongNative operator>>(int shift) const
d0ee33f5 472 { return wxULongLongNative(m_ll >> shift); }
8e38fd1f
RL
473 wxULongLongNative& operator>>=(int shift)
474 { m_ll >>= shift; return *this; }
475
476 // bitwise operators
477 wxULongLongNative operator&(const wxULongLongNative& ll) const
478 { return wxULongLongNative(m_ll & ll.m_ll); }
479 wxULongLongNative& operator&=(const wxULongLongNative& ll)
480 { m_ll &= ll.m_ll; return *this; }
481
482 wxULongLongNative operator|(const wxULongLongNative& ll) const
483 { return wxULongLongNative(m_ll | ll.m_ll); }
484 wxULongLongNative& operator|=(const wxULongLongNative& ll)
485 { m_ll |= ll.m_ll; return *this; }
486
487 wxULongLongNative operator^(const wxULongLongNative& ll) const
488 { return wxULongLongNative(m_ll ^ ll.m_ll); }
489 wxULongLongNative& operator^=(const wxULongLongNative& ll)
490 { m_ll ^= ll.m_ll; return *this; }
491
492 // multiplication/division
493 wxULongLongNative operator*(const wxULongLongNative& ll) const
494 { return wxULongLongNative(m_ll * ll.m_ll); }
495 wxULongLongNative operator*(unsigned long l) const
496 { return wxULongLongNative(m_ll * l); }
497 wxULongLongNative& operator*=(const wxULongLongNative& ll)
498 { m_ll *= ll.m_ll; return *this; }
499 wxULongLongNative& operator*=(unsigned long l)
500 { m_ll *= l; return *this; }
501
502 wxULongLongNative operator/(const wxULongLongNative& ll) const
503 { return wxULongLongNative(m_ll / ll.m_ll); }
504 wxULongLongNative operator/(unsigned long l) const
505 { return wxULongLongNative(m_ll / l); }
506 wxULongLongNative& operator/=(const wxULongLongNative& ll)
507 { m_ll /= ll.m_ll; return *this; }
508 wxULongLongNative& operator/=(unsigned long l)
509 { m_ll /= l; return *this; }
510
511 wxULongLongNative operator%(const wxULongLongNative& ll) const
512 { return wxULongLongNative(m_ll % ll.m_ll); }
513 wxULongLongNative operator%(unsigned long l) const
514 { return wxULongLongNative(m_ll % l); }
515
516 // comparison
517 bool operator==(const wxULongLongNative& ll) const
518 { return m_ll == ll.m_ll; }
519 bool operator==(unsigned long l) const
520 { return m_ll == l; }
521 bool operator!=(const wxULongLongNative& ll) const
522 { return m_ll != ll.m_ll; }
523 bool operator!=(unsigned long l) const
524 { return m_ll != l; }
525 bool operator<(const wxULongLongNative& ll) const
526 { return m_ll < ll.m_ll; }
527 bool operator<(unsigned long l) const
528 { return m_ll < l; }
529 bool operator>(const wxULongLongNative& ll) const
530 { return m_ll > ll.m_ll; }
531 bool operator>(unsigned long l) const
532 { return m_ll > l; }
533 bool operator<=(const wxULongLongNative& ll) const
534 { return m_ll <= ll.m_ll; }
535 bool operator<=(unsigned long l) const
536 { return m_ll <= l; }
537 bool operator>=(const wxULongLongNative& ll) const
538 { return m_ll >= ll.m_ll; }
539 bool operator>=(unsigned long l) const
540 { return m_ll >= l; }
541
542 // miscellaneous
543
544 // return the string representation of this number
545 wxString ToString() const;
546
547 // conversion to byte array: returns a pointer to static buffer!
548 void *asArray() const;
549
550#if wxUSE_STD_IOSTREAM
551 // input/output
7fcdf88f
VZ
552 friend WXDLLIMPEXP_BASE
553 wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongNative&);
8e38fd1f
RL
554#endif
555
7fcdf88f
VZ
556 friend WXDLLIMPEXP_BASE
557 wxString& operator<<(wxString&, const wxULongLongNative&);
51496782 558
216a72f3
VZ
559#if wxUSE_STREAMS
560 friend WXDLLIMPEXP_BASE
561 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLongNative&);
562 friend WXDLLIMPEXP_BASE
563 class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLongNative&);
564#endif
565
8e38fd1f 566private:
60582201 567 wxULongLong_t m_ll;
8e38fd1f
RL
568};
569
216a72f3
VZ
570inline
571wxLongLongNative& wxLongLongNative::operator=(const wxULongLongNative &ll)
572{
573 m_ll = ll.GetValue();
574 return *this;
575}
576
8b81872f
VZ
577#endif // wxUSE_LONGLONG_NATIVE
578
579#if wxUSE_LONGLONG_WX
580
bddd7a8d 581class WXDLLIMPEXP_BASE wxLongLongWx
8b81872f
VZ
582{
583public:
584 // ctors
585 // default ctor initializes to 0
2a310492
VZ
586 wxLongLongWx()
587 {
588 m_lo = m_hi = 0;
589
590#ifdef wxLONGLONG_TEST_MODE
591 m_ll = 0;
592
593 Check();
594#endif // wxLONGLONG_TEST_MODE
595 }
8b81872f 596 // from long
2a310492 597 wxLongLongWx(long l) { *this = l; }
8b81872f
VZ
598 // from 2 longs
599 wxLongLongWx(long hi, unsigned long lo)
2a310492
VZ
600 {
601 m_hi = hi;
602 m_lo = lo;
603
604#ifdef wxLONGLONG_TEST_MODE
605 m_ll = hi;
606 m_ll <<= 32;
607 m_ll |= lo;
608
609 Check();
610#endif // wxLONGLONG_TEST_MODE
611 }
8b81872f
VZ
612
613 // default copy ctor is ok in both cases
614
615 // no dtor
616
617 // assignment operators
618 // from long
619 wxLongLongWx& operator=(long l)
2a310492
VZ
620 {
621 m_lo = l;
622 m_hi = (l < 0 ? -1l : 0l);
623
624#ifdef wxLONGLONG_TEST_MODE
625 m_ll = l;
626
627 Check();
628#endif // wxLONGLONG_TEST_MODE
629
630 return *this;
631 }
a4d2944e
VZ
632 // from int
633 wxLongLongWx& operator=(int l)
634 {
635 return operator=((long)l);
636 }
637
216a72f3
VZ
638 wxLongLongWx& operator=(unsigned long l)
639 {
640 m_lo = l;
641 m_hi = 0;
642
643#ifdef wxLONGLONG_TEST_MODE
644 m_ll = l;
645
646 Check();
647#endif // wxLONGLONG_TEST_MODE
648
649 return *this;
650 }
62675f1e
VZ
651
652 wxLongLongWx& operator=(unsigned int l)
653 {
654 return operator=((unsigned long)l);
655 }
656
216a72f3
VZ
657 wxLongLongWx& operator=(const class wxULongLongWx &ll);
658
659 // from double
cd0b1709 660 wxLongLongWx& Assign(double d);
8b81872f
VZ
661 // can't have assignment operator from 2 longs
662
663 // accessors
664 // get high part
665 long GetHi() const { return m_hi; }
666 // get low part
667 unsigned long GetLo() const { return m_lo; }
668
cd0b1709 669 // get absolute value
2ea24d9f 670 wxLongLongWx Abs() const { return wxLongLongWx(*this).Abs(); }
2a310492
VZ
671 wxLongLongWx& Abs()
672 {
673 if ( m_hi < 0 )
674 m_hi = -m_hi;
675
676#ifdef wxLONGLONG_TEST_MODE
677 if ( m_ll < 0 )
678 m_ll = -m_ll;
679
680 Check();
681#endif // wxLONGLONG_TEST_MODE
682
683 return *this;
684 }
cd0b1709 685
90e572f1 686 // convert to long with range checking in debug mode (only!)
cd0b1709
VZ
687 long ToLong() const
688 {
2a310492 689 wxASSERT_MSG( (m_hi == 0l) || (m_hi == -1l),
9a83f860 690 wxT("wxLongLong to long conversion loss of precision") );
cd0b1709
VZ
691
692 return (long)m_lo;
693 }
694
e7aaf2de
VZ
695 // convert to double
696 double ToDouble() const;
697
8b81872f
VZ
698 // operations
699 // addition
700 wxLongLongWx operator+(const wxLongLongWx& ll) const;
701 wxLongLongWx& operator+=(const wxLongLongWx& ll);
702 wxLongLongWx operator+(long l) const;
703 wxLongLongWx& operator+=(long l);
704
705 // pre increment operator
706 wxLongLongWx& operator++();
707
708 // post increment operator
2a310492 709 wxLongLongWx& operator++(int) { return ++(*this); }
8b81872f
VZ
710
711 // negation operator
712 wxLongLongWx operator-() const;
2a310492 713 wxLongLongWx& Negate();
8b81872f
VZ
714
715 // subraction
716 wxLongLongWx operator-(const wxLongLongWx& ll) const;
717 wxLongLongWx& operator-=(const wxLongLongWx& ll);
718
719 // pre decrement operator
720 wxLongLongWx& operator--();
721
722 // post decrement operator
2a310492 723 wxLongLongWx& operator--(int) { return --(*this); }
8b81872f
VZ
724
725 // shifts
726 // left shift
727 wxLongLongWx operator<<(int shift) const;
728 wxLongLongWx& operator<<=(int shift);
729
730 // right shift
731 wxLongLongWx operator>>(int shift) const;
732 wxLongLongWx& operator>>=(int shift);
733
734 // bitwise operators
735 wxLongLongWx operator&(const wxLongLongWx& ll) const;
736 wxLongLongWx& operator&=(const wxLongLongWx& ll);
737 wxLongLongWx operator|(const wxLongLongWx& ll) const;
738 wxLongLongWx& operator|=(const wxLongLongWx& ll);
739 wxLongLongWx operator^(const wxLongLongWx& ll) const;
740 wxLongLongWx& operator^=(const wxLongLongWx& ll);
741 wxLongLongWx operator~() const;
742
743 // comparison
2ea24d9f
VZ
744 bool operator==(const wxLongLongWx& ll) const
745 { return m_lo == ll.m_lo && m_hi == ll.m_hi; }
842215bb
WS
746#if wxUSE_LONGLONG_NATIVE
747 bool operator==(const wxLongLongNative& ll) const
748 { return m_lo == ll.GetLo() && m_hi == ll.GetHi(); }
749#endif
2ea24d9f
VZ
750 bool operator!=(const wxLongLongWx& ll) const
751 { return !(*this == ll); }
8b81872f
VZ
752 bool operator<(const wxLongLongWx& ll) const;
753 bool operator>(const wxLongLongWx& ll) const;
2ea24d9f
VZ
754 bool operator<=(const wxLongLongWx& ll) const
755 { return *this < ll || *this == ll; }
756 bool operator>=(const wxLongLongWx& ll) const
757 { return *this > ll || *this == ll; }
8b81872f 758
f6bcfd97
BP
759 bool operator<(long l) const { return *this < wxLongLongWx(l); }
760 bool operator>(long l) const { return *this > wxLongLongWx(l); }
761 bool operator==(long l) const
762 {
763 return l >= 0 ? (m_hi == 0 && m_lo == (unsigned long)l)
764 : (m_hi == -1 && m_lo == (unsigned long)l);
765 }
766
767 bool operator<=(long l) const { return *this < l || *this == l; }
768 bool operator>=(long l) const { return *this > l || *this == l; }
769
8b81872f
VZ
770 // multiplication
771 wxLongLongWx operator*(const wxLongLongWx& ll) const;
772 wxLongLongWx& operator*=(const wxLongLongWx& ll);
8b81872f
VZ
773
774 // division
cd0b1709
VZ
775 wxLongLongWx operator/(const wxLongLongWx& ll) const;
776 wxLongLongWx& operator/=(const wxLongLongWx& ll);
777
778 wxLongLongWx operator%(const wxLongLongWx& ll) const;
779
8b81872f
VZ
780 void Divide(const wxLongLongWx& divisor,
781 wxLongLongWx& quotient,
782 wxLongLongWx& remainder) const;
783
784 // input/output
3a994742
VZ
785
786 // return the string representation of this number
787 wxString ToString() const;
788
789 void *asArray() const;
790
cd0b1709 791#if wxUSE_STD_IOSTREAM
a353dc98
VZ
792 friend WXDLLIMPEXP_BASE
793 wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongWx&);
fcc3d7cb 794#endif // wxUSE_STD_IOSTREAM
8b81872f 795
a353dc98
VZ
796 friend WXDLLIMPEXP_BASE
797 wxString& operator<<(wxString&, const wxLongLongWx&);
51496782 798
216a72f3
VZ
799#if wxUSE_STREAMS
800 friend WXDLLIMPEXP_BASE
801 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongWx&);
802 friend WXDLLIMPEXP_BASE
803 class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongWx&);
804#endif
805
8b81872f
VZ
806private:
807 // long is at least 32 bits, so represent our 64bit number as 2 longs
808
809 long m_hi; // signed bit is in the high part
810 unsigned long m_lo;
2a310492
VZ
811
812#ifdef wxLONGLONG_TEST_MODE
813 void Check()
814 {
815 wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo );
816 }
817
818 wxLongLong_t m_ll;
819#endif // wxLONGLONG_TEST_MODE
8b81872f
VZ
820};
821
8e38fd1f 822
bddd7a8d 823class WXDLLIMPEXP_BASE wxULongLongWx
8e38fd1f
RL
824{
825public:
826 // ctors
827 // default ctor initializes to 0
828 wxULongLongWx()
829 {
830 m_lo = m_hi = 0;
831
832#ifdef wxLONGLONG_TEST_MODE
833 m_ll = 0;
834
835 Check();
836#endif // wxLONGLONG_TEST_MODE
837 }
838 // from ulong
839 wxULongLongWx(unsigned long l) { *this = l; }
840 // from 2 ulongs
841 wxULongLongWx(unsigned long hi, unsigned long lo)
842 {
843 m_hi = hi;
844 m_lo = lo;
845
846#ifdef wxLONGLONG_TEST_MODE
847 m_ll = hi;
848 m_ll <<= 32;
849 m_ll |= lo;
850
851 Check();
852#endif // wxLONGLONG_TEST_MODE
853 }
854
842215bb
WS
855 // from signed to unsigned
856 wxULongLongWx(wxLongLongWx ll)
857 {
858 wxASSERT(ll.GetHi() >= 0);
859 m_hi = (unsigned long)ll.GetHi();
860 m_lo = ll.GetLo();
861 }
862
8e38fd1f
RL
863 // default copy ctor is ok in both cases
864
865 // no dtor
866
867 // assignment operators
868 // from long
869 wxULongLongWx& operator=(unsigned long l)
870 {
871 m_lo = l;
872 m_hi = 0;
873
874#ifdef wxLONGLONG_TEST_MODE
875 m_ll = l;
876
877 Check();
878#endif // wxLONGLONG_TEST_MODE
879
880 return *this;
881 }
216a72f3
VZ
882 wxULongLongWx& operator=(long l)
883 {
884 m_lo = l;
885 m_hi = (unsigned long) ((l<0) ? -1l : 0);
886
887#ifdef wxLONGLONG_TEST_MODE
888 m_ll = (wxULongLong_t) (wxLongLong_t) l;
889
890 Check();
891#endif // wxLONGLONG_TEST_MODE
892
893 return *this;
894 }
895 wxULongLongWx& operator=(const class wxLongLongWx &ll) {
896 // Should we use an assert like it was before in the constructor?
897 // wxASSERT(ll.GetHi() >= 0);
898 m_hi = (unsigned long)ll.GetHi();
899 m_lo = ll.GetLo();
900 return *this;
901 }
8e38fd1f
RL
902
903 // can't have assignment operator from 2 longs
904
905 // accessors
906 // get high part
907 unsigned long GetHi() const { return m_hi; }
908 // get low part
909 unsigned long GetLo() const { return m_lo; }
910
90e572f1 911 // convert to long with range checking in debug mode (only!)
8e38fd1f
RL
912 unsigned long ToULong() const
913 {
d7997e1a 914 wxASSERT_MSG( m_hi == 0ul,
9a83f860 915 wxT("wxULongLong to long conversion loss of precision") );
8e38fd1f
RL
916
917 return (unsigned long)m_lo;
918 }
919
d870a030
VZ
920 // convert to double
921 double ToDouble() const;
922
8e38fd1f
RL
923 // operations
924 // addition
925 wxULongLongWx operator+(const wxULongLongWx& ll) const;
926 wxULongLongWx& operator+=(const wxULongLongWx& ll);
927 wxULongLongWx operator+(unsigned long l) const;
928 wxULongLongWx& operator+=(unsigned long l);
929
930 // pre increment operator
931 wxULongLongWx& operator++();
932
933 // post increment operator
934 wxULongLongWx& operator++(int) { return ++(*this); }
935
43e8916f 936 // subtraction
842215bb 937 wxLongLongWx operator-(const wxULongLongWx& ll) const;
8e38fd1f
RL
938 wxULongLongWx& operator-=(const wxULongLongWx& ll);
939
940 // pre decrement operator
941 wxULongLongWx& operator--();
942
943 // post decrement operator
944 wxULongLongWx& operator--(int) { return --(*this); }
945
946 // shifts
947 // left shift
948 wxULongLongWx operator<<(int shift) const;
949 wxULongLongWx& operator<<=(int shift);
950
951 // right shift
952 wxULongLongWx operator>>(int shift) const;
953 wxULongLongWx& operator>>=(int shift);
954
955 // bitwise operators
956 wxULongLongWx operator&(const wxULongLongWx& ll) const;
957 wxULongLongWx& operator&=(const wxULongLongWx& ll);
958 wxULongLongWx operator|(const wxULongLongWx& ll) const;
959 wxULongLongWx& operator|=(const wxULongLongWx& ll);
960 wxULongLongWx operator^(const wxULongLongWx& ll) const;
961 wxULongLongWx& operator^=(const wxULongLongWx& ll);
962 wxULongLongWx operator~() const;
963
964 // comparison
965 bool operator==(const wxULongLongWx& ll) const
966 { return m_lo == ll.m_lo && m_hi == ll.m_hi; }
967 bool operator!=(const wxULongLongWx& ll) const
968 { return !(*this == ll); }
969 bool operator<(const wxULongLongWx& ll) const;
970 bool operator>(const wxULongLongWx& ll) const;
971 bool operator<=(const wxULongLongWx& ll) const
972 { return *this < ll || *this == ll; }
973 bool operator>=(const wxULongLongWx& ll) const
974 { return *this > ll || *this == ll; }
975
976 bool operator<(unsigned long l) const { return *this < wxULongLongWx(l); }
977 bool operator>(unsigned long l) const { return *this > wxULongLongWx(l); }
978 bool operator==(unsigned long l) const
979 {
980 return (m_hi == 0 && m_lo == (unsigned long)l);
981 }
982
983 bool operator<=(unsigned long l) const { return *this < l || *this == l; }
984 bool operator>=(unsigned long l) const { return *this > l || *this == l; }
985
986 // multiplication
987 wxULongLongWx operator*(const wxULongLongWx& ll) const;
988 wxULongLongWx& operator*=(const wxULongLongWx& ll);
989
990 // division
991 wxULongLongWx operator/(const wxULongLongWx& ll) const;
992 wxULongLongWx& operator/=(const wxULongLongWx& ll);
993
994 wxULongLongWx operator%(const wxULongLongWx& ll) const;
995
996 void Divide(const wxULongLongWx& divisor,
997 wxULongLongWx& quotient,
998 wxULongLongWx& remainder) const;
999
1000 // input/output
1001
1002 // return the string representation of this number
1003 wxString ToString() const;
1004
1005 void *asArray() const;
1006
1007#if wxUSE_STD_IOSTREAM
a353dc98
VZ
1008 friend WXDLLIMPEXP_BASE
1009 wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongWx&);
8e38fd1f
RL
1010#endif // wxUSE_STD_IOSTREAM
1011
a353dc98
VZ
1012 friend WXDLLIMPEXP_BASE
1013 wxString& operator<<(wxString&, const wxULongLongWx&);
51496782 1014
216a72f3
VZ
1015#if wxUSE_STREAMS
1016 friend WXDLLIMPEXP_BASE
1017 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLongWx&);
1018 friend WXDLLIMPEXP_BASE
1019 class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLongWx&);
1020#endif
1021
8e38fd1f
RL
1022private:
1023 // long is at least 32 bits, so represent our 64bit number as 2 longs
1024
d2ce649b 1025 unsigned long m_hi;
8e38fd1f
RL
1026 unsigned long m_lo;
1027
1028#ifdef wxLONGLONG_TEST_MODE
1029 void Check()
1030 {
1031 wxASSERT( (m_ll >> 32) == m_hi && (unsigned long)m_ll == m_lo );
1032 }
1033
60582201 1034 wxULongLong_t m_ll;
8e38fd1f
RL
1035#endif // wxLONGLONG_TEST_MODE
1036};
1037
8b81872f
VZ
1038#endif // wxUSE_LONGLONG_WX
1039
2ea24d9f
VZ
1040// ----------------------------------------------------------------------------
1041// binary operators
1042// ----------------------------------------------------------------------------
1043
6d56eb5c 1044inline bool operator<(long l, const wxLongLong& ll) { return ll > l; }
d7997e1a
VZ
1045inline bool operator>(long l, const wxLongLong& ll) { return ll < l; }
1046inline bool operator<=(long l, const wxLongLong& ll) { return ll >= l; }
1047inline bool operator>=(long l, const wxLongLong& ll) { return ll <= l; }
1048inline bool operator==(long l, const wxLongLong& ll) { return ll == l; }
1049inline bool operator!=(long l, const wxLongLong& ll) { return ll != l; }
b01fb5c3 1050
d7997e1a 1051inline wxLongLong operator+(long l, const wxLongLong& ll) { return ll + l; }
b01fb5c3
VZ
1052inline wxLongLong operator-(long l, const wxLongLong& ll)
1053{
d7997e1a 1054 return wxLongLong(l) - ll;
b01fb5c3 1055}
2ea24d9f 1056
d7997e1a
VZ
1057inline bool operator<(unsigned long l, const wxULongLong& ull) { return ull > l; }
1058inline bool operator>(unsigned long l, const wxULongLong& ull) { return ull < l; }
1059inline bool operator<=(unsigned long l, const wxULongLong& ull) { return ull >= l; }
1060inline bool operator>=(unsigned long l, const wxULongLong& ull) { return ull <= l; }
1061inline bool operator==(unsigned long l, const wxULongLong& ull) { return ull == l; }
1062inline bool operator!=(unsigned long l, const wxULongLong& ull) { return ull != l; }
1063
1064inline wxULongLong operator+(unsigned long l, const wxULongLong& ull) { return ull + l; }
8e38fd1f 1065
842215bb 1066inline wxLongLong operator-(unsigned long l, const wxULongLong& ull)
d7997e1a 1067{
842215bb 1068 wxULongLong ret = wxULongLong(l) - ull;
17473a77 1069 return wxLongLong((wxInt32)ret.GetHi(),ret.GetLo());
d7997e1a 1070}
8e38fd1f 1071
216a72f3
VZ
1072#if wxUSE_LONGLONG_NATIVE && wxUSE_STREAMS
1073
1074WXDLLIMPEXP_BASE class wxTextOutputStream &operator<<(class wxTextOutputStream &stream, wxULongLong_t value);
1075WXDLLIMPEXP_BASE class wxTextOutputStream &operator<<(class wxTextOutputStream &stream, wxLongLong_t value);
1076
1077WXDLLIMPEXP_BASE class wxTextInputStream &operator>>(class wxTextInputStream &stream, wxULongLong_t &value);
1078WXDLLIMPEXP_BASE class wxTextInputStream &operator>>(class wxTextInputStream &stream, wxLongLong_t &value);
1079
1080#endif
1081
3dd4d0ec
VZ
1082// ----------------------------------------------------------------------------
1083// Specialize numeric_limits<> for our long long wrapper classes.
1084// ----------------------------------------------------------------------------
1085
1086#if wxUSE_LONGLONG_NATIVE
1087
c92e136d
VZ
1088// VC6 is known to not have __int64 specializations of numeric_limits<> in its
1089// <limits> anyhow so don't bother including it, especially as it results in
1090// tons of warnings because the standard header itself uses obsolete template
1091// specialization syntax.
1092#ifndef __VISUALC6__
1093
3dd4d0ec
VZ
1094#include <limits>
1095
1096namespace std
1097{
1098
1969499c
VS
1099#ifdef __clang__
1100 // libstdc++ (used by Clang) uses struct for numeric_limits; unlike gcc, clang
1101 // warns about this
1102 template<> struct numeric_limits<wxLongLong> : public numeric_limits<wxLongLong_t> {};
1103 template<> struct numeric_limits<wxULongLong> : public numeric_limits<wxULongLong_t> {};
1104#else
1105 template<> class numeric_limits<wxLongLong> : public numeric_limits<wxLongLong_t> {};
1106 template<> class numeric_limits<wxULongLong> : public numeric_limits<wxULongLong_t> {};
1107#endif
3dd4d0ec
VZ
1108
1109} // namespace std
1110
c92e136d
VZ
1111#endif // !VC6
1112
3dd4d0ec
VZ
1113#endif // wxUSE_LONGLONG_NATIVE
1114
715efa4e
VZ
1115// ----------------------------------------------------------------------------
1116// Specialize wxArgNormalizer to allow using wxLongLong directly with wx pseudo
1117// vararg functions.
1118// ----------------------------------------------------------------------------
1119
1120// Notice that this must be done here and not in wx/strvararg.h itself because
1121// we can't include wx/longlong.h from there as this header itself includes
1122// wx/string.h which includes wx/strvararg.h too, so to avoid the circular
1123// dependencies we can only do it here (or add another header just for this but
1124// it doesn't seem necessary).
1125#include "wx/strvararg.h"
1126
1127template<>
1128struct WXDLLIMPEXP_BASE wxArgNormalizer<wxLongLong>
1129{
1130 wxArgNormalizer(wxLongLong value,
1131 const wxFormatString *fmt, unsigned index)
1132 : m_value(value)
1133 {
1134 wxASSERT_ARG_TYPE( fmt, index, wxFormatString::Arg_LongLongInt );
1135 }
1136
1137 wxLongLong_t get() const { return m_value.GetValue(); }
1138
1139 wxLongLong m_value;
1140};
1141
216a72f3
VZ
1142#endif // wxUSE_LONGLONG
1143
8b81872f 1144#endif // _WX_LONGLONG_H