I need to create a parser for a protocol encoded in ABNF format. I am inclined to use boost::spirit for this task. I read documentation but I'm still not sure what is the most effective way to do it.
As far as I understand it is better to create a lexer for all the terminal symbols and use qi to parse input. Is that right?