I am trying to create a string that calls functions and concatenates the return string values. If one of the functions returns an int I get an error. I don't have much experience with overloading operators, but I'm thinking I need to overload the + operator to make this work. Is this correct? Or is there a better way to do this?
string str=getString1()+getString2()+getInt();