Is it possible to force the Qt MOC to expand some of my custom preprocessor defines to achieve some kind of 2-pass preprocessing? E.g.:
// MOC macro
@MOC #define add(a, b) (a + b) // Should be expanded by MOC (1st run)
// "Normal" macro
#define sub(a, b) (a - b) // Should be expanded by preprocessor (2nd run)