DECLARE_OLECREATE
Enables objects of CCmdTarget-derived classes to be created through OLE automation.
Syntax
DECLARE_OLECREATE(
class_name )
Parameters
- class_name
The actual name of the class.
Remarks
This macro enables other OLE-enabled applications to create objects of this type.
Add the DECLARE_OLECREATE macro in the .h module for the class, and then include that module in all .cpp modules that need access to objects of this class.
If DECLARE_OLECREATE is included in the class declaration, then IMPLEMENT_OLECREATE must be included in the class implementation. A class declaration using DECLARE_OLECREATE must also use DECLARE_DYNCREATE or DECLARE_SERIAL.
Requirements
Header: afxdisp.h
See Also
MFC Macros and Globals
IMPLEMENT_OLECREATE
DECLARE_DYNCREATE
DECLARE_SERIAL