我有一个带有公共枚举成员的结构:
namespace A {
struct Events {
enum CUES { CLEAR, DATA, ERROR };
virtual void Event(CUES) = 0;
protected:
~Events() {}
};
}
当我尝试从另一个类访问CLEAR
时,编译器会产生一条错误消息,指出它不可访问。
这是代码和错误:
namespace B {
class Base: A::Events{
void Event(Events::CUES){}
protected:
Events::CUES lastCue;
};
class Impl: public Base {
bool test(){
return (lastCue == A::Events::CLEAR);
}
};
}
somefile(19): error C2247: 'A::Events::CLEAR' not accessible because 'B::Base' uses 'private' to inherit from 'A::Events'
somefile(3): note: see declaration of 'A::Events::CLEAR'
如何获取公共枚举?
更新:
gcc
似乎可以毫无问题地进行编译。
答案 0 :(得分:2)
我想出的解决方案是通过全局名称空间更改访问路由:
namespace B {
class Impl: public Base {
bool test(){
return (lastCue == ::A::Events::CLEAR);
} // ^^
};
}
这可以避免对Base
进行任何更改。