// 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;
}
