У меня есть сценарий следующего вида:
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