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
From my own experience, the convention is to name the inclusion guards after the header file containing them with the exception that the name is all in caps and the period is replaced with an underscore.
So test.h becomes TEST_H.
Real life examples of this include Qt Creator, which follows this convention when auto-generating class header files.