how to get progress indicator during phrase_parse() of boost::spirit::x3?
I am using boost::spirit:x3, shown below. I use it to import/parse
some very large files and am trying to find a way to get some sort of
progress from it so that I can use for a progress bar in app, but so
far I've been unable to see a way.
namespace parser {
namespace x3 = boost::spirit::x3;
using namespace x3;
auto const string = lexeme[+graph];
auto const point = rule
participants (1)
-
Lane