I have a string variable var = "BaseClass", then i have to replace that var with its content in function e.g. i am calling "BaseClass" function like this BaseClass::func_name();
now my Question is that if i have to call function from the class whose name is stored into var string i.e. var::func_name(), can we replace var variable with its content, and call correct class function.
Thanks in advance.