Suppose a hierarchical structure where B is a parent of C, D
I would like to define a method in B that C, and D will utilize, but it would reference other methods that would be defined in C and D
What is the best approach for that type of structure?
in pseudo code
class B
int login()
parseSite()
class C : B
int parseSite()
site specific logic goes here
class D : B
int parseSite()
site specific logic goes here