In C++, what is the standard approach to avoid a method to be overriden in any children class
Declaring the method private in the parent class
private
Not declaring the method virtual in the parent class
virtual
Declaring the method final in the parent class
final
Just by not overriding it in the children class