I would like to use phrase_parse() of boost. 
I don't know %, eol, omit, raw and so on.
phrase_parse(
    omit\[+graph\] >> eol >> 
    (raw\[*~char_(";\r\n")\] >> ';' >> long_ >> ';' >> raw\[*~char_(";\r\n")\]) % eol, 
     qi::blank, parsed);
Code from: C++: Fast way to read mapped file into a matrix
Where can I find it?
 
     
    