I'm implementing an output stream operator<< overload, and I need to check that the output stream parameter os is std::cout, and if not, throw std::runtime_error - how can I check it?
friend std::ostream& operator<<(std::ostream& os, const Software &soft)
operator<<for this purpose? Why don't you just write a function called something likePrint(const Software &soft)that just outputs tocout? – Benjamin Lindley Oct 8 '12 at 9:33