Back

// PSLPrivileges.h : Declaration of the CPSLPrivileges

#pragma once
#include "resource.h"       // main symbols
#include "GUIDs.h"
#include "PSLExceptions.h"
#include "ProSysLib_i.h"

#include "PSLPrivilege.h"

DECLARE_PSL_COLLECTION(Privileges, Privilege);

class ATL_NO_VTABLE CPSLPrivileges :
   public CComObjectRootEx<CComMultiThreadModel>,
   public CComCoClass<CPSLPrivileges, &CLSID_PSLPrivileges>,
   public CPrivilegesCollection,
   public CPSLException<&CLSID_PSLPrivileges, &IID_IPSLPrivileges>
{
public:

   CPSLPrivileges();

BEGIN_COM_MAP(CPSLPrivileges)
   COM_INTERFACE_ENTRY(IPSLPrivileges)
   COM_INTERFACE_ENTRY(IDispatch)
   COM_INTERFACE_ENTRY(ISupportErrorInfo)
END_COM_MAP()

   DECLARE_PROTECT_FINAL_CONSTRUCT()
   HRESULT FinalConstruct();
   void FinalRelease();

////////////////////////////
// Interface Implementation:
////////////////////////////

   STDMETHOD(Update)();
   STDMETHOD(Find)(BSTR PrivilegeName, IPSLPrivilege ** ppValue);

protected:

   virtual HRESULT OnIndexOutOfRange();

private:

   void InternalUpdate();
};

Top