Unfortunately there is no good solution for this, however, we are considering a solution to be able to define special "keywords" to substitute the class keyword:
case=9589
For now, you can use this (little ugly) workaround:
#ifndef VA_DOES_NOT_UNDERSTAND_THIS
gom_class
#else
class
#endif
cClassName : public cBaseClassName
{
int Apple;
};
It's ugly since require you to modify the actual code, but it works both with VA and the compiler.