When using a using-declaration to expose base class' methods, how can I go about exposing methods with the same name but different parameters?
class Base
{
protected:
void f();
void f(int);
};
class Derived: public Base
{
using Base::f; // which is exposed, and how can I manually specify?
};