i have a class with :
std::string* aaa;
std::string* bbb;
std::string* outputString;
int number1;
int number2;
and i need to write a method std::string* displayoutputString();,
which returns a pointer std::string* outputString; - which points to a string that is equal aaa+bbb+number1+number2.
so, i dont know how to concatenate all string and ints to one string
please help me to write that method!!