Hide or forbid functions for child classes?

Is it possible to hide or forbid functions for child classes?

I want for example an base actor class “AbstractCard” (in C++) which handles the general functionality,
but the child classes should only implement the “play” function.

So I want to prevent functions like Tick or ActorBeginCursorOver to be implemented of child classes.