Back

// PSLServices.cpp : Implementation of CPSLServices

#include "stdafx.h"
#include "PSLServices.h"


CPSLServices::CPSLServices()
{
}

HRESULT CPSLServices::OnIndexOutOfRange()
{
   return MakeException(EX_INDEXOUTOFRANGE);
}

HRESULT CPSLServices::FinalConstruct()
{
   return S_OK;
}

void CPSLServices::FinalRelease()
{
}

////////////////////////////////////////////////////////////////////////
// Interface Implementation;
////////////////////////////////////////////////////////////////////////

STDMETHODIMP CPSLServices::Update()
{
   PSL_BEGIN

   PSL_END
}

Top