class declaration

Hello all,


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?

Thanks in advance for the reply.

-Chene
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).
Thanks very much.
Topic archived. No new replies allowed.