| 21 | namespace bp = boost::parser; |
| 22 | |
| 23 | bp::rule<struct quoted_string, std::string> quoted_string = "quoted name"; |
| 24 | bp::rule<struct employee_p, employee> employee_p = "employee"; |
| 25 | |
| 26 | auto quoted_string_def = bp::lexeme['"' >> +(bp::char_ - '"') >> '"']; |