CComObjectGlobal Class
This class manages a reference count on the module containing your Base object.
template<
class Base
>
class CComObjectGlobal :
public Base
Parameters
- Base
Your class, derived from CComObjectRoot or CComObjectRootEx, as well as from any other interface you want to support on the object.
Members
Public Constructors
Name |
Description |
---|---|
The constructor. |
|
The destructor. |
Public Methods
Name |
Description |
---|---|
Implements a global AddRef. |
|
Implements a global QueryInterface. |
|
Implements a global Release. |
Public Data Members
Name |
Description |
---|---|
Contains the HRESULT returned during construction of the CComObjectGlobal object. |
Remarks
CComObjectGlobal manages a reference count on the module containing your Base object. CComObjectGlobal ensures your object will not be deleted as long as the module is not released. Your object will only be removed when the reference count on the entire module goes to zero.
For example, using CComObjectGlobal, a class factory can hold a common global object that is shared by all its clients.
Inheritance Hierarchy
Base
CComObjectGlobal
Requirements
Header: atlcom.h