Hello. I have some problem.
I have interface with 2 function
class Convert{
virtual string ob_to_str(Convert *)=0;
virtual Convert* str_to_ob(string s)=0;
};
then i have next class
class A:public Convert{
How to convert String to Object??
How to convert object to String???
}