WindowsXP/net/ias/policy/src/attribute.cpp
2025-04-27 07:49:33 -04:00

39 lines
714 B
C++

// Attribute.cpp : Implementation of CAttribute
#include "ias.h"
#include "iaspolcy.h"
#include "attribute.h"
#include "policydbg.h"
/////////////////////////////////////////////////////////////////////////////
// CAttribute
STDMETHODIMP CAttribute::get_Value(VARIANT * pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAttribute::put_Value(VARIANT newVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAttribute::get_Id(LONG * pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAttribute::put_Id(LONG newVal)
{
// TODO: Add your implementation code here
return S_OK;
}