How are C++ include guards typically named? I tend to see this a lot:
#ifndef FOO_H #define FOO_H // ... #endif
However, I don\'t think
I usually look what time it is and just append that to the end of it, i.e. FOO_H_248, it's an extra precaution, and you'll never have to remember it anyway, so you don't need to worry about the fact that it's cryptic.
FOO_H_248