You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.3 KiB
86 lines
2.3 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright(C) 1997-1998 Microsoft Corporation all rights reserved.
|
|
//
|
|
// Module: sdoprofile.h
|
|
//
|
|
// Project: Everest
|
|
//
|
|
// Description: IAS Server Data Object - Profile Object Definition
|
|
//
|
|
// Author: TLP 1/23/98
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _INC_IAS_SDO_PROFILE_H_
|
|
#define _INC_IAS_SDO_PROFILE_H_
|
|
|
|
#include "resource.h"
|
|
#include <ias.h>
|
|
#include <iaspolcy.h>
|
|
#include <sdoiaspriv.h>
|
|
#include "sdo.h"
|
|
#include <sdofactory.h>
|
|
|
|
class SdoDictionary;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSdoProfile
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
class CSdoProfile :
|
|
public CSdo
|
|
{
|
|
|
|
public:
|
|
|
|
////////////////////
|
|
// ATL Interface Map
|
|
////////////////////
|
|
BEGIN_COM_MAP(CSdoProfile)
|
|
COM_INTERFACE_ENTRY(ISdo)
|
|
COM_INTERFACE_ENTRY(IDispatch)
|
|
END_COM_MAP()
|
|
|
|
DECLARE_SDO_FACTORY(CSdoProfile);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
CSdoProfile();
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
~CSdoProfile();
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT FinalInitialize(
|
|
/*[in]*/ bool fInitNew,
|
|
/*[in]*/ ISdoMachine* pAttachedMachine
|
|
);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT Load(void);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT Save(void);
|
|
|
|
private:
|
|
|
|
CSdoProfile(const CSdoProfile& rhs);
|
|
CSdoProfile& operator = (CSdoProfile& rhs);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT LoadAttributes(void);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT SaveAttributes(void);
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
HRESULT ClearAttributes(void);
|
|
|
|
// Dictionary SDO
|
|
//
|
|
CComPtr<SdoDictionary> m_pSdoDictionary;
|
|
};
|
|
|
|
#endif // _INC_IAS_SDO_PROFILE_H_
|
|
|
|
|