Удаление дублирования кода для виртуальных членов класса
Теперь я попал в странную ситуацию. Я напишу действительно упрощенную версию того же самого.class Base { public: virtual int func1()=0; virtual int func2()=0; protected: int n; }; class der1: public Base { //implements the virtual functions of the base and uses the protected data members o...