class PUBLIC_DECL CAlert
{
//member functions
};
//what does the PUBLIC_DECL means here???
Printable View
class PUBLIC_DECL CAlert
{
//member functions
};
//what does the PUBLIC_DECL means here???
I suspect that PUBLIC_DECL is a definition defined elsewhere (in a header file?) and could possibly be
__declspec(dllexport)
or
__declspec(dllimport)
depending upon whether the class is being imported from a dll or exported from a dll.