]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cpp.h
3 * Purpose: Various preprocessor helpers
4 * Author: Vadim Zeitlin
7 * Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
8 * Licence: wxWindows licence
11 /* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */
16 /* wxCONCAT works like preprocessor ## operator but also works with macros */
17 #define wxCONCAT_HELPER(text, line) text ## line
18 #define wxCONCAT(text, line) wxCONCAT_HELPER(text, line)
20 #define wxCONCAT3(x1, x2, x3) wxCONCAT(wxCONCAT(x1, x2), x3)
21 #define wxCONCAT4(x1, x2, x3, x4) wxCONCAT(wxCONCAT3(x1, x2, x3), x4)
22 #define wxCONCAT5(x1, x2, x3, x4, x5) wxCONCAT(wxCONCAT4(x1, x2, x3, x4), x5)
24 /* wxSTRINGIZE works as the preprocessor # operator but also works with macros */
25 #define wxSTRINGIZE_HELPER(x) #x
26 #define wxSTRINGIZE(x) wxSTRINGIZE_HELPER(x)
28 /* a Unicode-friendly version of wxSTRINGIZE_T */
29 #define wxSTRINGIZE_T(x) wxAPPLY_T(wxSTRINGIZE(x))
32 Helper macros for wxMAKE_UNIQUE_NAME: normally this works by appending the
33 current line number to the given identifier to reduce the probability of the
34 conflict (it may still happen if this is used in the headers, hence you
35 should avoid doing it or provide unique prefixes then) but we have to do it
38 #if defined(__VISUALC__) && (__VISUALC__ >= 1300)
40 __LINE__ handling is completely broken in VC++ when using "Edit and
41 Continue" (/ZI option) and results in preprocessor errors if we use it
42 inside the macros. Luckily VC7 has another standard macro which can be
43 used like this and is even better than __LINE__ because it is globally
46 # define wxCONCAT_LINE(text) wxCONCAT(text, __COUNTER__)
47 #else /* normal compilers */
48 # define wxCONCAT_LINE(text) wxCONCAT(text, __LINE__)
51 /* Create a "unique" name with the given prefix */
52 #define wxMAKE_UNIQUE_NAME(text) wxCONCAT_LINE(text)
55 This macro can be passed as argument to another macro when you don't have
56 anything to pass in fact.
58 #define wxEMPTY_PARAMETER_VALUE /* Fake macro parameter value */
60 #endif /* _WX_CPP_H_ */