Теперь есть простой способ перегрузки
Код: Выделить всё
class My {
public:
int get(int);
char get(int);
}
Код: Выделить всё
class My {
public:
int get_int(int);
char get_char(int);
}
Подробнее здесь: https://stackoverflow.com/questions/956 ... eturn-type