Hi,
I don't know if this is already available and I don't know how to use it, but if not available, is it difficult to include this, please, please, please?

Given the code below:
#ifdef ENUM1
enum TNoNoCpp {ENUM_1,ENUM_2};
#end
#ifdef ENUM2
enum TNoNoCpp {ENUM_10,ENUM_20};
#endif
I'd like the parser to only parse the relevant enum based on the definition of either ENUM1 or ENUM2. Right now I have all four ENUM_1, ENUM_2, ENUM_10 and ENUM_20 as members (or children) or "TNoNoCpp".
I have tried to define ENUM1 or ENUM2 in "Project / Build options / Compiler settings / #defines" to no avail... Am I missing something??
Thx a lot,
daniloz