Question
Is there a way to cast a container to a MoveAnimator< Container >
The title says it all. I need to cast a straight container to a MoveAnimator< Container >
I have a function in a base class that extends the container class like so:
hideMenu(MoveAnimator< touchgfx::Container >& menu)Inside this base class I obviously cannot call MoveAnimator functions, so I would like to cast "this" to a move animator so the base class itself can call its own move animation functions.
