template <class EventType>
class IEvent;
class IEventable;
typedef boost::function<void (IEventable&, IEvent&)> behaviorRef;
將模板類IEvent傳遞到提升函數的正確方法是什麼?有了這個代碼,我得到: error: functional cast expression list treated as compound expression error: template argument 1 is invalid error: invalid type in declaration before ‘;’ token
將模板傳遞給提升函數
你能否提供一些樣品? – Ockonal 2010-06-14 21:05:27
@Ockonal:我試過。這有幫助嗎? – sbi 2010-06-14 21:07:57
是的,第二個代碼示例(關於結構)就是我需要的。謝謝。 – Ockonal 2010-06-14 21:15:29