[try Beta version]
Not logged in

 
class declaration

Nov 17, 2010 at 3:44pm
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
Nov 17, 2010 at 5:05pm
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).
Nov 18, 2010 at 11:12am
Thanks very much.
Topic archived. No new replies allowed.