I'm going to write me a little print( )
function.
However in said function I'll have to determine whether I'm dealing with a console application independent of the Operating System.
( Mostly for deciding whether to use std::cout
or go with the OS related MessageBox
implementation. )
If there is no auto generated constant would there be another suitable way that is multi platform compatible?
I will include it in a library, which means I can't tell which compiler will be used or which IDE.