]> git.saurik.com Git - wxWidgets.git/blame - include/wx/buffer.h
Re-enable a single m_anyDoubleDouble1 test in wxAny test case.
[wxWidgets.git] / include / wx / buffer.h
CommitLineData
14971e5b 1///////////////////////////////////////////////////////////////////////////////
c12ef8a2 2// Name: wx/buffer.h
14971e5b
VZ
3// Purpose: auto buffer classes: buffers which automatically free memory
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 12.04.99
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
14971e5b
VZ
10///////////////////////////////////////////////////////////////////////////////
11
14971e5b
VZ
12#ifndef _WX_BUFFER_H
13#define _WX_BUFFER_H
14
e713a90b 15#include "wx/chartype.h"
52de37c7 16#include "wx/wxcrtbase.h"
e90c1d2a 17
e2473d4c
VZ
18#include <stdlib.h> // malloc() and free()
19
b5dbe15d 20class WXDLLIMPEXP_FWD_BASE wxCStrData;
8db4a5d2 21
14971e5b
VZ
22// ----------------------------------------------------------------------------
23// Special classes for (wide) character strings: they use malloc/free instead
24// of new/delete
25// ----------------------------------------------------------------------------
26
4e79262f
VZ
27// helpers used by wxCharTypeBuffer
28namespace wxPrivate
29{
30
31struct UntypedBufferData
32{
33 enum Kind
34 {
35 Owned,
36 NonOwned
37 };
38
6df09f32
VS
39 UntypedBufferData(void *str, size_t len, Kind kind = Owned)
40 : m_str(str), m_length(len), m_ref(1), m_owned(kind == Owned) {}
4e79262f
VZ
41
42 ~UntypedBufferData()
43 {
44 if ( m_owned )
45 free(m_str);
46 }
47
48 void *m_str;
6df09f32 49 size_t m_length;
4e79262f 50
6df09f32 51 // "short" to have sizeof(Data)=12 on 32bit archs
4e79262f
VZ
52 unsigned short m_ref;
53
54 bool m_owned;
55};
56
4e79262f 57// NB: this is defined in string.cpp and not the (non-existent) buffer.cpp
b96a56e6 58WXDLLIMPEXP_BASE UntypedBufferData * GetUntypedNullData();
4e79262f
VZ
59
60} // namespace wxPrivate
61
de4983f3
VS
62
63// Reference-counted character buffer for storing string data. The buffer
64// is only valid for as long as the "parent" object that provided the data
65// is valid; see wxCharTypeBuffer<T> for persistent variant.
d18c8d3d 66template <typename T>
de4983f3 67class wxScopedCharTypeBuffer
d18c8d3d
VS
68{
69public:
70 typedef T CharType;
71
de4983f3 72 wxScopedCharTypeBuffer()
d18c8d3d 73 {
de4983f3 74 m_data = GetNullData();
d18c8d3d
VS
75 }
76
de4983f3
VS
77 // Creates "non-owned" buffer, i.e. 'str' is not owned by the buffer
78 // and doesn't get freed by dtor. Used e.g. to point to wxString's internal
79 // storage.
6df09f32
VS
80 static
81 const wxScopedCharTypeBuffer CreateNonOwned(const CharType *str,
82 size_t len = wxNO_LEN)
d18c8d3d 83 {
6df09f32
VS
84 if ( len == wxNO_LEN )
85 len = wxStrlen(str);
86
de4983f3
VS
87 wxScopedCharTypeBuffer buf;
88 if ( str )
6df09f32 89 buf.m_data = new Data(const_cast<CharType*>(str), len, Data::NonOwned);
de4983f3 90 return buf;
d18c8d3d
VS
91 }
92
de4983f3
VS
93 // Creates "owned" buffer, i.e. takes over ownership of 'str' and frees it
94 // in dtor (if ref.count reaches 0).
6df09f32 95 static
33808494 96 const wxScopedCharTypeBuffer CreateOwned(CharType *str,
6df09f32 97 size_t len = wxNO_LEN )
486a5941 98 {
6df09f32
VS
99 if ( len == wxNO_LEN )
100 len = wxStrlen(str);
101
de4983f3 102 wxScopedCharTypeBuffer buf;
5c1de526 103 if ( str )
33808494 104 buf.m_data = new Data(str, len);
486a5941
VS
105 return buf;
106 }
107
de4983f3
VS
108 wxScopedCharTypeBuffer(const wxScopedCharTypeBuffer& src)
109 {
110 m_data = src.m_data;
111 IncRef();
112 }
113
114 wxScopedCharTypeBuffer& operator=(const wxScopedCharTypeBuffer& src)
115 {
116 if ( &src == this )
117 return *this;
118
119 DecRef();
120 m_data = src.m_data;
121 IncRef();
122
123 return *this;
124 }
125
126 ~wxScopedCharTypeBuffer()
486a5941 127 {
5c1de526 128 DecRef();
486a5941 129 }
d18c8d3d 130
03af437f
VS
131 // NB: this method is only const for backward compatibility. It used to
132 // be needed for auto_ptr-like semantics of the copy ctor, but now
133 // that ref-counting is used, it's not really needed.
134 CharType *release() const
5c1de526 135 {
6b583d40 136 if ( m_data == GetNullData() )
5c1de526 137 return NULL;
d18c8d3d 138
9a83f860
VZ
139 wxASSERT_MSG( m_data->m_owned, wxT("can't release non-owned buffer") );
140 wxASSERT_MSG( m_data->m_ref == 1, wxT("can't release shared buffer") );
14971e5b 141
4e79262f 142 CharType * const p = m_data->Get();
03af437f 143
de4983f3 144 wxScopedCharTypeBuffer *self = const_cast<wxScopedCharTypeBuffer*>(this);
6df09f32 145 self->m_data->Set(NULL, 0);
03af437f
VS
146 self->DecRef();
147
5c1de526 148 return p;
d18c8d3d 149 }
c12ef8a2 150
d18c8d3d
VS
151 void reset()
152 {
5c1de526 153 DecRef();
d18c8d3d 154 }
c12ef8a2 155
4e79262f
VZ
156 CharType *data() { return m_data->Get(); }
157 const CharType *data() const { return m_data->Get(); }
5c1de526
VS
158 operator const CharType *() const { return data(); }
159 CharType operator[](size_t n) const { return data()[n]; }
486a5941 160
6df09f32
VS
161 size_t length() const { return m_data->m_length; }
162
de4983f3 163protected:
5c1de526 164 // reference-counted data
5c69ef61 165 struct Data : public wxPrivate::UntypedBufferData
486a5941 166 {
6df09f32
VS
167 Data(CharType *str, size_t len, Kind kind = Owned)
168 : wxPrivate::UntypedBufferData(str, len, kind)
5c1de526 169 {
5c1de526
VS
170 }
171
4e79262f 172 CharType *Get() const { return static_cast<CharType *>(m_str); }
6df09f32
VS
173 void Set(CharType *str, size_t len)
174 {
175 m_str = str;
176 m_length = len;
177 }
5c1de526
VS
178 };
179
180 // placeholder for NULL string, to simplify this code
6b583d40
VZ
181 static Data *GetNullData()
182 {
b96a56e6 183 return static_cast<Data *>(wxPrivate::GetUntypedNullData());
6b583d40 184 }
5c1de526
VS
185
186 void IncRef()
187 {
6b583d40 188 if ( m_data == GetNullData() ) // exception, not ref-counted
5c1de526
VS
189 return;
190 m_data->m_ref++;
486a5941
VS
191 }
192
5c1de526 193 void DecRef()
486a5941 194 {
6b583d40 195 if ( m_data == GetNullData() ) // exception, not ref-counted
5c1de526
VS
196 return;
197 if ( --m_data->m_ref == 0 )
198 delete m_data;
6b583d40 199 m_data = GetNullData();
486a5941
VS
200 }
201
de4983f3
VS
202 // sets this object to a be copy of 'other'; if 'src' is non-owned,
203 // a deep copy is made and 'this' will contain new instance of the data
204 void MakeOwnedCopyOf(const wxScopedCharTypeBuffer& src)
205 {
206 this->DecRef();
207
208 if ( src.m_data == this->GetNullData() )
209 {
210 this->m_data = this->GetNullData();
211 }
212 else if ( src.m_data->m_owned )
213 {
214 this->m_data = src.m_data;
215 this->IncRef();
216 }
217 else
218 {
219 // if the scoped buffer had non-owned data, we have to make
220 // a copy here, because src.m_data->m_str is valid only for as long
221 // as 'src' exists
6df09f32
VS
222 this->m_data = new Data
223 (
224 StrCopy(src.data(), src.length()),
225 src.length()
226 );
de4983f3
VS
227 }
228 }
229
6df09f32
VS
230 static CharType *StrCopy(const CharType *src, size_t len)
231 {
232 CharType *dst = (CharType*)malloc(sizeof(CharType) * (len + 1));
daa35097
VZ
233 if ( dst )
234 memcpy(dst, src, sizeof(CharType) * (len + 1));
6df09f32
VS
235 return dst;
236 }
237
de4983f3 238protected:
5c1de526 239 Data *m_data;
d18c8d3d
VS
240};
241
de4983f3
VS
242typedef wxScopedCharTypeBuffer<char> wxScopedCharBuffer;
243typedef wxScopedCharTypeBuffer<wchar_t> wxScopedWCharBuffer;
244
245
246// this buffer class always stores data in "owned" (persistent) manner
247template <typename T>
248class wxCharTypeBuffer : public wxScopedCharTypeBuffer<T>
249{
250protected:
251 typedef typename wxScopedCharTypeBuffer<T>::Data Data;
252
253public:
254 typedef T CharType;
255
6df09f32 256 wxCharTypeBuffer(const CharType *str = NULL, size_t len = wxNO_LEN)
de4983f3
VS
257 {
258 if ( str )
6df09f32
VS
259 {
260 if ( len == wxNO_LEN )
261 len = wxStrlen(str);
df04f800 262 this->m_data = new Data(this->StrCopy(str, len), len);
6df09f32 263 }
de4983f3 264 else
6df09f32 265 {
de4983f3 266 this->m_data = this->GetNullData();
6df09f32 267 }
de4983f3
VS
268 }
269
270 wxCharTypeBuffer(size_t len)
271 {
6df09f32
VS
272 this->m_data =
273 new Data((CharType *)malloc((len + 1)*sizeof(CharType)), len);
de4983f3
VS
274 this->m_data->Get()[len] = (CharType)0;
275 }
276
277 wxCharTypeBuffer(const wxCharTypeBuffer& src)
3339414a 278 : wxScopedCharTypeBuffer<T>(src) {}
de4983f3
VS
279
280 wxCharTypeBuffer& operator=(const CharType *str)
281 {
282 this->DecRef();
283
284 if ( str )
6df09f32 285 this->m_data = new Data(wxStrdup(str), wxStrlen(str));
de4983f3
VS
286 return *this;
287 }
288
289 wxCharTypeBuffer& operator=(const wxCharTypeBuffer& src)
290 {
3339414a 291 wxScopedCharTypeBuffer<T>::operator=(src);
de4983f3
VS
292 return *this;
293 }
294
295 wxCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
296 {
df04f800 297 this->MakeOwnedCopyOf(src);
de4983f3
VS
298 }
299
300 wxCharTypeBuffer& operator=(const wxScopedCharTypeBuffer<T>& src)
301 {
302 MakeOwnedCopyOf(src);
303 return *this;
304 }
305
306 bool extend(size_t len)
307 {
308 wxASSERT_MSG( this->m_data->m_owned, "cannot extend non-owned buffer" );
309 wxASSERT_MSG( this->m_data->m_ref == 1, "can't extend shared buffer" );
310
311 CharType *str =
312 (CharType *)realloc(this->data(), (len + 1) * sizeof(CharType));
313 if ( !str )
314 return false;
315
f2c6e607
VZ
316 // For consistency with the ctor taking just the length, NUL-terminate
317 // the buffer.
318 str[len] = (CharType)0;
319
de4983f3
VS
320 if ( this->m_data == this->GetNullData() )
321 {
6df09f32 322 this->m_data = new Data(str, len);
de4983f3
VS
323 }
324 else
325 {
6df09f32 326 this->m_data->Set(str, len);
de4983f3
VS
327 this->m_data->m_owned = true;
328 }
329
330 return true;
331 }
a6bb7a28
VS
332
333 void shrink(size_t len)
334 {
335 wxASSERT_MSG( this->m_data->m_owned, "cannot shrink non-owned buffer" );
336 wxASSERT_MSG( this->m_data->m_ref == 1, "can't shrink shared buffer" );
337
338 wxASSERT( len <= this->length() );
339
340 this->m_data->m_length = len;
341 this->data()[len] = 0;
342 }
de4983f3
VS
343};
344
fb5ae4f6 345WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer<char> )
7c77f334
VZ
346WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<char> )
347
6b583d40 348class wxCharBuffer : public wxCharTypeBuffer<char>
d18c8d3d
VS
349{
350public:
ccd4deab 351 typedef wxCharTypeBuffer<char> wxCharTypeBufferBase;
de4983f3 352 typedef wxScopedCharTypeBuffer<char> wxScopedCharTypeBufferBase;
ccd4deab 353
681e4412
VS
354 wxCharBuffer(const wxCharTypeBufferBase& buf)
355 : wxCharTypeBufferBase(buf) {}
de4983f3
VS
356 wxCharBuffer(const wxScopedCharTypeBufferBase& buf)
357 : wxCharTypeBufferBase(buf) {}
681e4412 358
ccd4deab
VZ
359 wxCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
360 wxCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
361
ccd4deab 362 wxCharBuffer(const wxCStrData& cstr);
d18c8d3d
VS
363};
364
fb5ae4f6 365WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxScopedCharTypeBuffer<wchar_t> )
7c77f334
VZ
366WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( wxCharTypeBuffer<wchar_t> )
367
6b583d40 368class wxWCharBuffer : public wxCharTypeBuffer<wchar_t>
d18c8d3d
VS
369{
370public:
ccd4deab 371 typedef wxCharTypeBuffer<wchar_t> wxCharTypeBufferBase;
de4983f3 372 typedef wxScopedCharTypeBuffer<wchar_t> wxScopedCharTypeBufferBase;
ccd4deab 373
681e4412
VS
374 wxWCharBuffer(const wxCharTypeBufferBase& buf)
375 : wxCharTypeBufferBase(buf) {}
de4983f3
VS
376 wxWCharBuffer(const wxScopedCharTypeBufferBase& buf)
377 : wxCharTypeBufferBase(buf) {}
681e4412 378
ccd4deab
VZ
379 wxWCharBuffer(const CharType *str = NULL) : wxCharTypeBufferBase(str) {}
380 wxWCharBuffer(size_t len) : wxCharTypeBufferBase(len) {}
381
ccd4deab 382 wxWCharBuffer(const wxCStrData& cstr);
d18c8d3d 383};
2b5f62a0 384
ef0f1387
VS
385// wxCharTypeBuffer<T> implicitly convertible to T*
386template <typename T>
665e6a87 387class wxWritableCharTypeBuffer : public wxCharTypeBuffer<T>
ef0f1387
VS
388{
389public:
de4983f3 390 typedef typename wxScopedCharTypeBuffer<T>::CharType CharType;
ef0f1387 391
de4983f3 392 wxWritableCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
ef0f1387
VS
393 : wxCharTypeBuffer<T>(src) {}
394 // FIXME-UTF8: this won't be needed after converting mb_str()/wc_str() to
395 // always return a buffer
de4983f3
VS
396 // + we should derive this class from wxScopedCharTypeBuffer
397 // then
ef0f1387
VS
398 wxWritableCharTypeBuffer(const CharType *str = NULL)
399 : wxCharTypeBuffer<T>(str) {}
400
401 operator CharType*() { return this->data(); }
402};
403
404typedef wxWritableCharTypeBuffer<char> wxWritableCharBuffer;
405typedef wxWritableCharTypeBuffer<wchar_t> wxWritableWCharBuffer;
406
407
f93d01be 408#if wxUSE_UNICODE
ccd4deab 409 #define wxWxCharBuffer wxWCharBuffer
2f4f6de7 410
e90c1d2a
VZ
411 #define wxMB2WXbuf wxWCharBuffer
412 #define wxWX2MBbuf wxCharBuffer
81727065
VS
413 #if wxUSE_UNICODE_WCHAR
414 #define wxWC2WXbuf wxChar*
415 #define wxWX2WCbuf wxChar*
416 #elif wxUSE_UNICODE_UTF8
417 #define wxWC2WXbuf wxWCharBuffer
418 #define wxWX2WCbuf wxWCharBuffer
419 #endif
e90c1d2a 420#else // ANSI
ccd4deab 421 #define wxWxCharBuffer wxCharBuffer
2f4f6de7 422
e90c1d2a
VZ
423 #define wxMB2WXbuf wxChar*
424 #define wxWX2MBbuf wxChar*
425 #define wxWC2WXbuf wxCharBuffer
426 #define wxWX2WCbuf wxWCharBuffer
427#endif // Unicode/ANSI
f93d01be 428
b9fdb397
RD
429// ----------------------------------------------------------------------------
430// A class for holding growable data buffers (not necessarily strings)
431// ----------------------------------------------------------------------------
432
2b5f62a0
VZ
433// This class manages the actual data buffer pointer and is ref-counted.
434class wxMemoryBufferData
b9fdb397
RD
435{
436public:
2b5f62a0 437 // the initial size and also the size added by ResizeIfNeeded()
ae0ca755 438 enum { DefBufSize = 1024 };
2b5f62a0
VZ
439
440 friend class wxMemoryBuffer;
441
1582a1db 442 // everything is private as it can only be used by wxMemoryBuffer
2b5f62a0 443private:
ae0ca755 444 wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
2b5f62a0 445 : m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
b9fdb397 446 {
b9fdb397 447 }
2b5f62a0 448 ~wxMemoryBufferData() { free(m_data); }
b9fdb397 449
b9fdb397 450
2b5f62a0 451 void ResizeIfNeeded(size_t newSize)
b9fdb397 452 {
2b5f62a0
VZ
453 if (newSize > m_size)
454 {
455 void *dataOld = m_data;
ae0ca755 456 m_data = realloc(m_data, newSize + wxMemoryBufferData::DefBufSize);
2b5f62a0
VZ
457 if ( !m_data )
458 {
459 free(dataOld);
460 }
461
ae0ca755 462 m_size = newSize + wxMemoryBufferData::DefBufSize;
2b5f62a0 463 }
b9fdb397
RD
464 }
465
2b5f62a0
VZ
466 void IncRef() { m_ref += 1; }
467 void DecRef()
b9fdb397 468 {
2b5f62a0
VZ
469 m_ref -= 1;
470 if (m_ref == 0) // are there no more references?
471 delete this;
b9fdb397 472 }
b9fdb397 473
8dffb6b1
VS
474 void *release()
475 {
476 if ( m_data == NULL )
477 return NULL;
478
479 wxASSERT_MSG( m_ref == 1, "can't release shared buffer" );
480
481 void *p = m_data;
482 m_data = NULL;
483 m_len =
484 m_size = 0;
485
486 return p;
487 }
488
2b5f62a0
VZ
489
490 // the buffer containing the data
491 void *m_data;
492
493 // the size of the buffer
494 size_t m_size;
495
496 // the amount of data currently in the buffer
497 size_t m_len;
498
499 // the reference count
500 size_t m_ref;
22f3361e 501
c0c133e1 502 wxDECLARE_NO_COPY_CLASS(wxMemoryBufferData);
2b5f62a0
VZ
503};
504
505
6b583d40 506class wxMemoryBuffer
2b5f62a0
VZ
507{
508public:
509 // ctor and dtor
ae0ca755 510 wxMemoryBuffer(size_t size = wxMemoryBufferData::DefBufSize)
b9fdb397 511 {
2b5f62a0
VZ
512 m_bufdata = new wxMemoryBufferData(size);
513 m_bufdata->IncRef();
b9fdb397 514 }
b9fdb397 515
2b5f62a0
VZ
516 ~wxMemoryBuffer() { m_bufdata->DecRef(); }
517
518
519 // copy and assignment
520 wxMemoryBuffer(const wxMemoryBuffer& src)
521 : m_bufdata(src.m_bufdata)
522 {
523 m_bufdata->IncRef();
b9fdb397 524 }
2b5f62a0
VZ
525
526 wxMemoryBuffer& operator=(const wxMemoryBuffer& src)
b9fdb397 527 {
162e998c
PC
528 if (&src != this)
529 {
530 m_bufdata->DecRef();
531 m_bufdata = src.m_bufdata;
532 m_bufdata->IncRef();
533 }
2b5f62a0 534 return *this;
b9fdb397
RD
535 }
536
b9fdb397 537
2b5f62a0
VZ
538 // Accessors
539 void *GetData() const { return m_bufdata->m_data; }
540 size_t GetBufSize() const { return m_bufdata->m_size; }
541 size_t GetDataLen() const { return m_bufdata->m_len; }
ef1cae87 542
846b6c86
VZ
543 bool IsEmpty() const { return GetDataLen() == 0; }
544
2b5f62a0
VZ
545 void SetBufSize(size_t size) { m_bufdata->ResizeIfNeeded(size); }
546 void SetDataLen(size_t len)
ef1cae87 547 {
2b5f62a0
VZ
548 wxASSERT(len <= m_bufdata->m_size);
549 m_bufdata->m_len = len;
ef1cae87
RD
550 }
551
846b6c86
VZ
552 void Clear() { SetDataLen(0); }
553
2b5f62a0
VZ
554 // Ensure the buffer is big enough and return a pointer to it
555 void *GetWriteBuf(size_t sizeNeeded)
ef1cae87 556 {
2b5f62a0
VZ
557 m_bufdata->ResizeIfNeeded(sizeNeeded);
558 return m_bufdata->m_data;
559 }
c12ef8a2 560
2b5f62a0
VZ
561 // Update the length after the write
562 void UngetWriteBuf(size_t sizeUsed) { SetDataLen(sizeUsed); }
ef1cae87 563
2b5f62a0
VZ
564 // Like the above, but appends to the buffer
565 void *GetAppendBuf(size_t sizeNeeded)
566 {
567 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + sizeNeeded);
568 return (char*)m_bufdata->m_data + m_bufdata->m_len;
569 }
ef1cae87 570
2b5f62a0
VZ
571 // Update the length after the append
572 void UngetAppendBuf(size_t sizeUsed)
573 {
574 SetDataLen(m_bufdata->m_len + sizeUsed);
575 }
ef1cae87 576
2b5f62a0
VZ
577 // Other ways to append to the buffer
578 void AppendByte(char data)
b9fdb397 579 {
9a83f860 580 wxCHECK_RET( m_bufdata->m_data, wxT("invalid wxMemoryBuffer") );
2b5f62a0
VZ
581
582 m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1);
583 *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data;
584 m_bufdata->m_len += 1;
585 }
586
68bc51a9 587 void AppendData(const void *data, size_t len)
2b5f62a0
VZ
588 {
589 memcpy(GetAppendBuf(len), data, len);
590 UngetAppendBuf(len);
b9fdb397
RD
591 }
592
2b5f62a0
VZ
593 operator const char *() const { return (const char*)GetData(); }
594
8dffb6b1
VS
595 // gives up ownership of data, returns the pointer; after this call,
596 // data isn't freed by the buffer and its content is resent to empty
597 void *release()
598 {
599 return m_bufdata->release();
600 }
601
b9fdb397 602private:
2b5f62a0 603 wxMemoryBufferData* m_bufdata;
b9fdb397
RD
604};
605
14971e5b
VZ
606// ----------------------------------------------------------------------------
607// template class for any kind of data
608// ----------------------------------------------------------------------------
609
610// TODO
611
612#endif // _WX_BUFFER_H