我boost::signals2::signals
在一个组件中使用,UpdateComponent
. 此组件的特定聚合类型为Updateable
. 我希望Updateable
能够连接到UpdateComponent
. boost::signals2::signal
我应该注意到Updateable
'sslot
是pure-virtual
.
下面是代码的具体示例:
// This is the component that emits a boost::signals2::signal.
class UpdateComponent {
public:
UpdateComponent();
boost::signals2::signal<void (float)> onUpdate; // boost::signals2::signal
}
在UpdateComponent
's 代码中的某个时刻,我执行onUpdate(myFloat)
; 我相信这类似于向boost::signals2::signal
所有“听众”“开火”。
// The is the aggregate that should listen to UpdateComponent's boost::signals2::signal
class Updateable {
public:
Updateable();
protected:
virtual void onUpdate(float deltaTime) = 0; // This is the pure-virtual slot that listens to UpdateComponent.
UpdateComponent* m_updateComponent;
}
在Updateable
的构造函数中,我执行以下操作:
Updateable::Updateable {
m_updateComponent = new UpdateComponent();
m_updateComponent->onUpdate.connect(&onUpdate);
}
我收到以下两个错误:
...Updateable.cpp:8: error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function. Say '&BalaurEngine::Traits::Updateable::onUpdate' [-fpermissive]
/usr/include/boost/function/function_template.hpp:225: error: no match for call to '(boost::_mfi::mf1<void, BalaurEngine::Traits::Updateable, float>) (float&)'
我应该提到我将 Qt 与 boost 结合使用。但是,我已经添加CONFIG += no_keywords
到我的.pro
文件中,因此两者应该可以顺利协同工作,如 boost 网站上所述。我不使用 Qtsignals
和slots
(效果很好)的原因是:我不想Updateable
成为QObject
.
如果有人可以帮助我弄清楚为什么会出错,将不胜感激!