windows-nt/Source/XPSP1/NT/inetsrv/iis/ui/itools/keyring/cservice.cpp

21 lines
351 B
C++
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// implements the exported CService
#include "stdafx.h"
#include "KeyObjs.h"
IMPLEMENT_DYNCREATE(CService, CTreeItem);
//---------------------------------------------------------
void CService::CloseConnection()
{
CKey* pKey;
// delete all the keys
while( pKey = (CKey*)GetFirstChild() )
{
pKey->FRemoveFromTree();
delete pKey;
}
}