Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.7 KB

atl-connection-points.md

File metadata and controls

34 lines (23 loc) · 1.7 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: ATL Connection Points
ATL Connection Points
11/04/2016
connections, connection points
ATL, connection points
connection points [C++], about connection points
17d76165-5f83-4f95-b36d-483821c247a1

ATL Connection Points

A connectable object is one that supports outgoing interfaces. An outgoing interface allows the object to communicate with a client. For each outgoing interface, the connectable object exposes a connection point. Each outgoing interface is implemented by a client on an object called a sink.

Diagram that shows the connection points on a client object and a connectable object.

Each connection point supports the IConnectionPoint interface. The connectable object exposes its connection points to the client through the IConnectionPointContainer interface.

In This Section

ATL Connection Point Classes
Briefly describes the ATL classes that support connection points.

Adding Connection Points to an Object
Outlines the steps used to add connection points to an object.

ATL Connection Point Example
Provides an example of declaring a connection point.

Related Sections

ATL
Provides links to conceptual topics on how to program using the Active Template Library.

See also

Concepts