You have (at least) three possibilities - it all depends on what you want to achieve:
1. Rename the derived class function(s) to avoid the name clash
2. Use the using directive.
3. Redeclaring the function in the derived class, and in that function call the base class function.
This is useful, if you want to block direct access to the base class function, maybe you want to do something like make a log or maybe add some debugging code, then call the base class version.