DECLARE_CLASSFACTORY2( lic )
Parameters
lic
[in] A class that implements VerifyLicenseKey, GetLicenseKey, and IsLicenseValid.
Remarks
Declares CComClassFactory2 to be the class factory. For example:
class CMyClass : ..., public CComCoClass< ... >
{
...
DECLARE_CLASSFACTORY2(CMyLicense)
...
};
CComCoClass includes the DECLARE_CLASSFACTORY macro, which specifies CComClassFactory as the default class factory. However, by including the DECLARE_CLASSFACTORY2 macro in your object's class definition, you override this default.
ATL Macros and Global Functions
See Also
DECLARE_CLASSFACTORY_EX, DECLARE_CLASSFACTORY_AUTO_THREAD, DECLARE_CLASSFACTORY_SINGLETON