I'm using private inheritance in the implementation of two very related classes. The using Base::X; is very useful and elegant. However, I can't seem to find an elegant solution for reusing the base class's swap function.
class A
{
public:
iterator begin();
const_iterator begin() const;
const_iterator cbegin() const;
A clone();
void swap( A& other );
};
class Const_A : private A
{
public:
// I think using A::A; will be valid in C++0x
Const_A( const A& copy) : A(copy) { }
// very elegant, concise, meaningful
using A::cbegin;
// I'd love to write using A::begin;, but I only want the const overload
// this is just forwarding to the const overload, still elegant
const_iterator begin() const
{ return A::begin(); }
// A little more work than just forwarding the function but still uber simple
Const_A clone()
{ return Const_A(A::clone()); }
// What should I do here?
void swap( Const_A& other )
{ /* ??? */ }
};
So far the only thing I can come up with is copy-pasting A::swap's definition into Const_A::swap's definition, YUCK!
Is there an elegant solution to to reuse the private base class's swap?
Is there a cleaner way to implement what I'm trying to do here (a const wrapper for a class)?
iterator(instead ofconst_iterator!) forbegin? Otherwise I don’t see the sense in having two functions, and to override the function in your derived class. – Konrad Rudolph Oct 27 '10 at 18:36std::vector<>::begin() -> iteratorandstd::vector<>::begin() const -> const_iterator. This is exactly what I did and my classes have similar semantics. Am I misunderstanding your question? – deft_code Oct 27 '10 at 18:54cbeginmethod for, then? – Konrad Rudolph Oct 27 '10 at 18:55const Ain place ofConst_A? @Konrad: AFAIK, it's for the problem where this might be "unsafe" to me:for (auto i = cont.begin(); ...)because ofcontis non-const, I get a mutable iterator, even if I don't want to mutate the elements. I could cast aconstinto the container use then usebegin, or just usecbegin. – GManNickG Oct 27 '10 at 18:57iteratordoes for the standard containers.iterator == byte*,const iterator == byte* constandconst_iterator == const byte*. I have similar semantics for my code. – deft_code Oct 27 '10 at 19:20