boost::spirit::parse_info<> pi = boost::spirit::parse(data.c_str(), g, boost::spirit::space_p);
I would like to traverse the parsed tree like classical tree (Pre-order, In-order, Post-order) to have data in a
given order. Any suggestion will be appreciated. Thank you.