I'm having an issue with inheritance between 2 classes and a single normal class. Here is an example of what I have:
Abstract ClassA function get_name();
Abstract ClassB extends ClassA
ClassC extends ClassB
Now, when I create an object of ClassC, I can't access the get_name() function. I'm not sure what I'm doing wrong here. Any help would be very much appreciated!