// TheCoClass.cpp : Implementation of CTheCoClass
#include "stdafx.h"
#include "BasicATLServer.h"
#include "TheCoClass.h"

/////////////////////////////////////////////////////////////////////////////
// CTheCoClass

//
STDMETHODIMP CTheCoClass::getString(BSTR *theString)
{
	Lock();
	*theString=m_theString.Copy();
	Unlock();
	return S_OK;
}

STDMETHODIMP CTheCoClass::setString(BSTR theString)
{
	Lock();
	m_theString=theString;
	Unlock();
	return S_OK;
}


Hosted by www.Geocities.ws

1