I have a declaration in a cpp where a function is like:
virtual void funcFoo() const = 0;
I assume that can be inherited by another class if is declared explicit, but what's the difference between
virtual void funcFoo() = 0;
Is important to me improve my programming and i want to know the difference. I don't want a malfunction caused by a bad inherit.
Thanks in advance.