I have a question about Pre-processor directives in c++:
For example:
#ifndef QUESTION //some code here #ifndef QUESTION //some code here #endif
In your code, the #ifndef QUESTION section will be discarded unless you #undef QUESTION.
Good luck!