I\'m making a logger and I wish to have some kind of stream-like happenings going on, ideally doing CLogger << \"Testing, \" << 1 << \",2,3\\n\";
CLogger << \"Testing, \" << 1 << \",2,3\\n\";
All of the operator<<() functions are defined on the class ostream, which you can inherit from and implement its methods.
operator<<()
ostream