I read from a file, and based on each line I create an object of a class with the same name as the first word of the line, this would require me to make "if statement" to check each word and then create the object. Is there any way to convert the string to class name, so I can do something like that:
string className = "someClass";
className obj;