The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
DECLARE_CLASSFACTORY_EX
Declares cf to be the class factory.
DECLARE_CLASSFACTORY_EX(
cf
)
- cf
[in] The name of the class that implements your class factory object.
The cf parameter must derive from CComClassFactory and override the CreateInstance method.
CComCoClass includes the DECLARE_CLASSFACTORY macro, which specifies CComClassFactory as the default class factory. However, by including the DECLARE_CLASSFACTORY_EX macro in your object's class definition, you override this default.
Example
class ATL_NO_VTABLE CMyCustomClass : public CComObjectRootEx<CComSingleThreadModel>, public CComCoClass<CMyCustomClass, &CLSID_MyCustomClass>, public IDispatchImpl<IMyCustomClass, &IID_IMyCustomClass, &LIBID_NVC_ATL_COMLib, /*wMajor =*/ 1, /*wMinor =*/ 0> { public: DECLARE_CLASSFACTORY_EX(CMyClassFactory) // Remainder of class declaration omitted.
Requirements
Header: atlcom.h
Show: