I want to define an operator<< for all enums, to cout the value and print that it is an enum like this:
code:
enum AnyEnum{A,B,C}; AnyEnum enm
its not possible to know the variable type at compile time.