Back
// PSLAccounts.cpp : Implementation of CPSLAccounts
#include "stdafx.h"
#include "PSLAccounts.h"
CPSLAccounts::CPSLAccounts()
{
}
HRESULT CPSLAccounts::OnIndexOutOfRange()
{
return MakeException(EX_INDEXOUTOFRANGE);
}
HRESULT CPSLAccounts::FinalConstruct()
{
return S_OK;
}
void CPSLAccounts::FinalRelease()
{
}
////////////////////////////////////////////////////////////////////////
// Interface Implementation;
////////////////////////////////////////////////////////////////////////
HRESULT CPSLAccounts::Update()
{
PSL_BEGIN
PSL_END
}
Top |