connectionpointcp.h

来自「【内容简介】 本书由一流的权威撰写」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _CONNECTIONPOINTCP_H_
#define _CONNECTIONPOINTCP_H_

template <class T>
class CProxyIStockPriceUpdate : public IConnectionPointImpl<T, &IID_IStockPriceUpdate, CComDynamicUnkArray>
{
	//Warning this class may be recreated by the wizard.
public:
	HRESULT Fire_NewQuote(BSTR bsSymbol, DOUBLE dPrice)
	{
		HRESULT ret;
		T* pT = static_cast<T*>(this);
		int nConnectionIndex;
		int nConnections = m_vec.GetSize();
		
		for (nConnectionIndex = 0; nConnectionIndex < nConnections; nConnectionIndex++)
		{
			pT->Lock();
			CComPtr<IUnknown> sp = m_vec.GetAt(nConnectionIndex);
			pT->Unlock();
			IStockPriceUpdate* pIStockPriceUpdate = reinterpret_cast<IStockPriceUpdate*>(sp.p);
			if (pIStockPriceUpdate != NULL)
				ret = pIStockPriceUpdate->NewQuote(bsSymbol, dPrice);
		}	return ret;
	
	}
};
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?