I'm beginning with QLibrary
, in this context I've reached the Stack Overflow question "QLibrary - import a class". And I have a question about that question:
What the meaning of TESTDLL_LIBSHARED_EXPORT
in the class declaration?
class TESTDLL_LIBSHARED_EXPORT TestDLL_lib
{
public:
TestDLL_lib();
int a;
int b;
int c;
int getValues();
};