I need to use the function from library (b.h) in a.cpp ,which already contains the function with same name.I have a condition where you can't change the names of functions.
a.cpp
#include "b.h"
class A{
void abc(){
abc(); //this function needs to be from library (b.h)
}
};
b.h
class b{
public:
void abc();
};
b.cpp
void b::abc(){
//defination
}