Изучаю c++ по видеоурокам от itProger а именно на данный момент наследование классов переписывал код как с урока но программа не запускается из за ошибки E0265 функцию "PC::get_info" (объявлено в строке 17) недоступно
#include
#include
#include
using namespace std;
class PC {
private:
int diagonal;
string os;
public:
PC(int diagonal, string os) {
this->diagonal = diagonal;
this->os = os;
}
void get_info() {
cout
#include
#include
#include
using namespace std;
class PC {
private:
int diagonal;
string os;
public:
PC(int diagonal, string os) {
this->diagonal = diagonal;
this->os = os;
}
void get_info() {
cout