O
Oliver Kowalke
Hi,
how could following problem be solved (not the same base class)?
// A.h
class A
{
private:
  const X move_()
  { ... }
public:
  const B f()
  { return B( move_() ); }
};
// B.h
class B
{
private:
  const X move_()
  { ... }
public:
  const A f()
  { return A( move_() ); }
};
how could following problem be solved (not the same base class)?
// A.h
class A
{
private:
  const X move_()
  { ... }
public:
  const B f()
  { return B( move_() ); }
};
// B.h
class B
{
private:
  const X move_()
  { ... }
public:
  const A f()
  { return A( move_() ); }
};