Hi, let's see if you can follow this... I have made a virtual class that inherits from another virtual class. The old virtual class had a implementation class that inherited from it that now instead inherits from my new virtual class. The new implementation class made for the new virtual class needs to use some functions from the "old" implementation class that are only defined inside that class and not in the old virtual class.

How do I set things up so that my new implementation class can use functions from the other implementation class that are not defined in the original virtual class?