Design
ud496.asc
Associated article: Undocumented Corner
Tags: Design
_UNDOCUMENTED CORNER_
by Scot Wingo and George Sheperd
Listing One
CFile* CDocument::GetFile(LPCTSTR lpszFileName, UINT nOpenFlags, CFileException* pError)
{
CMirrorFile* pFile = new CMirrorFile;
if (!pFile->Open(lpszFileName, nOpenFlags, pError))
delete pFile; pFile = NULL;
return pFile;
}
Listing Two
class CMirrorFile : ...


