In have a set of header files in a c++ project that consistently use the following syntax for a class declaration.
___________________________________________________________
#include....
....
....
class PRTIG CreateRep
{
.....
};
class PRTIG CheckForm : public CreateRep
{
...
};
_________________________________________________
Here CheckForm is a derived class and CreateRep is the base-class, my question is what is PRTIG?
I'd guess it's some macro hidden in a #define somewhere. Possibly something to do with exporting the class as a DLL (where I've seen such macro's used most frequently).