I know below using C1::fn; will bring fn(...) functions declared in C1 to C2, but I want to know what's the best practice for such using in design?
If fn() functions are not using C1 state, should I declare a helper class is the better way?
If fn functions are using C1 state, is using breaking encapsulation?
I appreciate if you can even mention some using cases in C++11. Like using the using Base::Base; constructor instead of calling it from derived member initializer?
class C1
{
//...
public:
int fn(int j) { ... }
double fn(double w) { ... }
void fn(const char * s) { ... }
};
class C2 : public C1
{
//...
public:
//...
using C1::fn;
double fn(double) { ... };
};