#include "wx/wxchar.h"
#include <string.h> // strdup
-// wchar.h isn't available on my system (Linux, g++ 2.7.2). JACS.
-#ifdef __LINUX__
-#include <wcstr.h>
-#else
-#include <wchar.h> // wchar_t
-#endif
-
// ----------------------------------------------------------------------------
// Special classes for (wide) character strings: they use malloc/free instead
// of new/delete
}
operator const char *() const { return m_str; }
+ char operator[](size_t n) const { return m_str[n]; }
private:
char *m_str;
};
+#if wxUSE_WCHAR_T
class wxWCharBuffer
{
public:
}
operator const wchar_t *() const { return m_wcs; }
-
+ wchar_t operator[](size_t n) const { return m_wcs[n]; }
+
private:
wchar_t *m_wcs;
};
+#endif
#if wxUSE_UNICODE
#define wxMB2WXbuf wxWCharBuffer