I have a typedef defined in a header as such below:
typedef struct data
{
std::string id;
std::string status;
} data_set;
I want to be able to wrap this in a Boost Python Module to make it available since it's passed into other methods. Would this be wrapped as a class in boost? or is there a specific way to wrap typedefs?