ae2f_docs
|
Go to the source code of this file.
Macros | |
#define | ae2f_NONE |
Literally nothing. | |
#define | ae2f_WhenC(...) |
Appears when the current language is C++. | |
#define | ae2f_WhenCXX(...) |
Appears when the current language is C. | |
#define | ae2f_is_cxx ae2f_WhenC(0) ae2f_WhenCXX(1) |
#define | ae2f_c_check && !ae2f_is_cxx |
Putting it after one condition in if will find if the script's language considered as [C], while doxygen does not notice. | |
#define | ae2f_cxx_check && ae2f_is_cxx |
Putting it after one condition in if will find if the script's language considered as [C++], while doxygen does not notice. |
#define ae2f_c_check && !ae2f_is_cxx |
Putting it after one condition in if will find if the script's language considered as [C], while doxygen does not notice.
For alter, see ae2f_cxx_check
#define ae2f_cxx_check && ae2f_is_cxx |
Putting it after one condition in if will find if the script's language considered as [C++], while doxygen does not notice.
For alter, see ae2f_c_check
#define ae2f_is_cxx ae2f_WhenC(0) ae2f_WhenCXX(1) |
#define ae2f_WhenC | ( | ... | ) |