访问声明只能应用于基类成员
我正在使用观察者模式。我有一个实现发布者类的类:
class foo : public Publisher<const RecoveryState &>,
public Publisher<char &>,
therin 尝试绑定附加函数:
using Publisher<const RecoveryState &>::attach;
using Publisher<const char &>::attach;
RecoveryState 有效,但在 char 行出现以下错误:
错误 5 错误 C3210:“发布者”:访问声明可以 只应用于基类 成员 c:\projekte\ps3controlmodule\tbfcontrol\tbfcmdhandler.h 363
i'm using the observer pattern. I've a class that implements the publisher class:
class foo : public Publisher<const RecoveryState &>,
public Publisher<char &>,
therin in try to bind the attach function:
using Publisher<const RecoveryState &>::attach;
using Publisher<const char &>::attach;
the RecoveryState works, but at the char line the following error occurs:
Error 5 error C3210: 'Publisher' : access declaration can
only be applied to a base class
member c:\projekte\ps3controlmodule\tbfcontrol\tbfcmdhandler.h 363
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
存在差异“char&”与“const char&”相比。
There is a discrepancy "char&" vs. "const char&".
'发布者'不是基类 - 'Publisher'是。
'Publisher<const char &>' is not a base class - 'Publisher<char &>' is.