I'm doing a work and I implemented an abstract method, the case makes a class inherit from it, but the compiler does not accuse error by the lack of implementation of the methods. Am I doing wrong?
class online{
private:
public:
online();
virtual void build() = 0;
};
class F : public online{
public:
F();
};
I would like the F
class to be forced to implement the build
method.