Share via


CComObjectGlobal Class

This class manages a reference count on the module containing your Base object.

template< 
   class Base  
> 
class CComObjectGlobal : 
   public Base

Parameters

Members

Public Constructors

Name

Description

CComObjectGlobal::CComObjectGlobal

The constructor.

CComObjectGlobal::~CComObjectGlobal

The destructor.

Public Methods

Name

Description

CComObjectGlobal::AddRef

Implements a global AddRef.

CComObjectGlobal::QueryInterface

Implements a global QueryInterface.

CComObjectGlobal::Release

Implements a global Release.

Public Data Members

Name

Description

CComObjectGlobal::m_hResFinalConstruct

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

See Also

Reference

CComObjectStack Class

CComAggObject Class

CComObject Class

Other Resources

ATL Class Overview