Possible Duplicate:
How to overload cout behaviour in c++
I would like to make cout act different for string. for example it will always add "Hello" before handovered string. So this is basically overloading operator but for String. How to do it?
Example
std::cout<<" Kermit";
Result
Hello Kermit