我有像下面這樣的場景:訪問父命名空間在C++
class criterion
{
// stuff about criteria...
};
namespace hex {
class criterion : public criterion //does not compile
{ //This should inherit from the
//A hex specific criterion //criterion class in the global namespace
};
};
我的問題是 - 如何在一個namspace這是另一個命名空間的父做一個繼承一個類?
Billy3