.NET
ud0298.txt
Associated article: ATL's ActiveX Control Architecture
Tags: Web Development .NET
Published source code accompanying the column by George Shepherd and and Scot Wingo as they continue their examination of Microsoft's Active Template Library, this month focusing on ATL's ActiveX Control architecture.
Undocumented Corner
by George Shepherd and Scot Wingo
Example 1:
template <class T>
class ATL_NO_VTABLE CComControl : public CComControlBase,
public CWindowImpl<T>
{
...
};
Listing One
class ATL_NO_VTABLE CATLCtl :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass&...


