I've benn having a problem for a while, when I'm trying to inherit from a pure virtual class, when I make the constructor for the "son" classes I receive this error:
../src/Course.cpp:54:77: error: class ‘ElectiveCourse’ does not have any field named ‘_dptr’
And this happens for all of the Course Protected fields.
This is the structure:
Course.h:
class Course{
public:
virtual void reg(Student * s) = 0;
..
protected:
...
string _dptr;
...
};
and then:
class ElectiveCourse : public Course{
...
}
Course.cpp:
ElectiveCourse::ElectiveCourse(
string name,
int semester,
double minGrade
)
: _dptr("CS"), _name(name), _semester(semester), _minGrade(minGrade) {
}
Like the ElectiveCourse, I have two other classes that inherit from the Course class, and I'm getting the same error in all of them. [EDIT] This only happens in the Constructor of them. There is NO constructor in the Course class hence it is pure virtual.
In the other hand, I also have two classe: Student, and CSStudent : Student, where Student is also pure virtual and CSStudent inherit Student, and in this case there are no errors. I did the same exact thing in both of them. What seems to be the problem? I'm sorry for my grammar errors.
[EDIT] added the Course.cpp part where I'm getting the error.
Thanks!
