| 34 | |
| 35 | template <typename Parser, typename Sequence> |
| 36 | bool parse(std::string const& input, Parser const& p, Sequence& s) |
| 37 | { |
| 38 | iterator_type begin = input.begin(); |
| 39 | return qi::parse(begin, input.end(), p, s); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // We need to tell fusion about our employee struct to make it a first-class |