Hi,
As you know, with Microsoft VS preprocessor operators you can convert a type passed in to a macro to a string. For example:
#define TO_STRING( type ) #type
I would like to do the same thing with a template type:
template< typename t_type >
void TO_STRING()
{
// Do something here with t_type to make it a string and then return it
}
Is there something in boost that can facilitate the behavior I'm describing? Thanks.