phsyron
0
Q:

Elegant solution to duplicate, const and non-const, getters?

class Foo
{
public:
    const int& get() const
    {
        //non-trivial work
        return foo;
    }

    int& get()
    {
        return const_cast<int&>(const_cast<const Foo*>(this)->get());
    }
};
1

New to Communities?

Join the community