I overloaded the << operator of a class. How do I have to overload the operator if I want to use it on pointers, like the following?
class A { std::str
Normally there is no good reason doing that, because semantically operator << return reference to stream object. And technically you basically can't do that.