I have a macro defined which is
#define TYPES (height,int,10)(width,int,20)
How to expand this macro using Boost Preprocessor something like this?
int height = 10;
int width = 20;
at most i am able to get is height,int,10 and width,int,20 as string but can't parse individual element.