For instance, suppose I have the following struct/sub-struct definition:
struct address_rec
{
std::string m_street;
std::string m_state;
unsigned m_zip;
};
struct employee_rec
{
std::string m_name;
address_rec m_address;
};
How should I use BOOST_FUSION_ADAPT_STRUCT
on employee_rec
?