I would like to have a macro which could be used like this:
STRING_TO_TYPE( MyType )
which would yield:
typedef mpl::string<'M','y','T','y','p','e'> MyType_id_t;
AFAIK it's impossible. The preprocessor can only concatenate strings, not
split them.
Philippe