28 lines
444 B
C++
28 lines
444 B
C++
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
LOCOBJ.INL
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// Mother object constructor. Does nothing, since for now we rely on
|
|
// AFX CObject to do the work for us.
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
inline
|
|
CLObject::CLObject()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|