C++ Pre-processor define after class keyword and before class name

c++, c-preprocessor, class

Solution

Oh, so after looking at the actual code, it's not `ONEWORD`, but rather `GLSAPI`. These `XYZ_API` macros are often used for conditionally specifying platform-specific linkage, such as some `__attributes__` which require different treatment on, for example, Windows and Unixes. So you can expect `GLSAPI` to be defined in one of the header files (maybe in `config.h`) like this:

#ifdef WIN32
#    define GLSAPI __dllimport
#elif defined __linux__
#    define GLSAPI __attribute__((visibility("visible")))
#else
#    define GLSAPI
#endif

(Pseudo-code, I'm not sure about all the attributes and linkage "qualifiers", but you can look them up in the code.)

Problem

I recently came across this sort of code in someone's opengl shader class and am not sure of its use. As I understand it from reading IBM's documentation, the #define ONEWORD will remove any occurence of ONEWORD in the subsequent text. What is the purpose of having ONEWORD in this code at all if all occurrences are removed? What does having a token like that, after a class keyword but before a class name, really mean? I've only used #define for include guards in the past so this is entirely new for me. ``` #define ONEWORD class ONEWORD FooClass { FooClass(); ~FooClass(); }; ``` The code I saw this in is here: https://dl.dropbox.com/u/104992465/glsl.h Just in case I've made its context too abstract.

Original source