.NET
ud697.txt
Associated article: The ActiveX Template Library
Tags: .NET
Published source code accompanying the column by George Shepherd and Scot Wingo in which they discuss the ActiveX Template Library (included with Visual C++ 5.0), a framework for creating COM components, takes care of things such as class object and server lifetime issues, COM identity, and implementing
_Undocumented Corner Column_
by George Shepherd and Scot Wingo
Listing One
class CAtlOb :
public CComObjectRoot,
public CComCoClass<CAtlOb, &CLSID_AtlOb>,
public IDispatchImpl<IAtlOb, &IID_IAtlOb, &LIBID_ATLSVRLib>
{
...
};


