5template <
class... Args>
void wxLogTrace(
const char *mask,
const char *formatString, Args &&...args)
9template <
class... Args>
void wxLogWarning(
const char *formatString, Args &&...args)
17 wxString(
const std::string &s) : std::string(s)
21 wxString(
const char *s) : std::string(s)
25 std::string ToStdString()
const
30 template <
class... Args>
static wxString Format(
const wxString &format, Args &&...args)
46 wxPoint(
int ax,
int ay) : x(ax), y(ay)
56 return wxPoint(p1.x + p2.x, p1.y + p2.y);
61 return wxPoint(p1.x - p2.x, p1.y - p2.y);
74#define wxASSERT assert
75#define wxASSERT_MSG(cond, msg) assert((cond))
76#define dyn_cast dynamic_cast
78#define wxCHECK2_MSG(cond, op, msg) \
88#define wxCHECK_MSG(cond, rc, msg) wxCHECK2_MSG(cond, return rc, msg)
89#define wxCHECK_RET(cond, msg) wxCHECK2_MSG(cond, return, msg)
90#define wxCHECK(cond, rc) wxCHECK_MSG(cond, rc, (const char *)NULL)
92#define wxFAIL_MSG(msg) assert(false)
Definition wx_compat.h:40
Definition wx_compat.h:64
Definition wx_compat.h:13
Point operator-(const Point &a, const Point &b)
Subtract two points_ component-wise.
Definition shapes.h:244