От: | Mechanicus | ||
Дата: | 11.10.04 10:29 | ||
Оценка: |
namespace a
{
namespace b
{
class C
{
struct D
{
int id;
};
D descr;
friend bool operation <(int lhs, const C::D &rhs);
};
bool operation <(int lhs, const C::D &rhs)
{
retrun lhs == descr.id;
}
}
}