IConnectionPointContainerImpl

template< class T >
class IConnectionPointContainerImpl

Parameters

T Your class, derived from IConnectionPointContainerImpl.

IConnectionPointContainerImpl implements a connection point container to manage a list of IConnectionPointImpl objects. IConnectionPointContainerImpl provides two methods that a client can call to retrieve more information about a connectable object:

For more information about using connection points in ATL, see the article Connection Points.

#include <atlcom.h>

See Also IConnectionPointContainer in the Win32 SDK


IConnectionPointContainerImpl Class Members

IConnectionPointContainer Methods
EnumConnectionPointsCreates an enumerator to iterate through the connection points supported in the connectable object.
FindConnectionPointRetrieves an interface pointer to the connection point that supports the specified IID.

IConnectionPointContainerImpl Overview


Methods


IConnectionPointContainerImpl::EnumConnectionPoints

HRESULT EnumConnectionPoints( IEnumConnectionPoints **ppEnum );

See IConnectionPointContainer::EnumConnectionPoints in the Win32 SDK.

Remarks

Creates an enumerator to iterate through the connection points supported in the connectable object.

IConnectionPointContainerImpl Overview | Class Members

See Also IConnectionPointImpl, IEnumConnectionPoints in the Win32 SDK


IConnectionPointContainerImpl::FindConnectionPoint

HRESULT FindConnectionPoint( REFIID riid, IConnectionPoint** ppCP );

See IConnectionPointContainer::FindConnectionPoint in the Win32 SDK.

Remarks

Retrieves an interface pointer to the connection point that supports the specified IID.

IConnectionPointContainerImpl Overview | Class Members

See Also IConnectionPointImpl