⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connectionpointcp.h

📁 COM+ Programming: A Practical Guide Using Visual C++ and ATL by Pradeep Tapadiya
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -