gps_precision and matching_beta can be used as a float value
This commit is contained in:
parent
f838f3427b
commit
a7eabeb73f
@ -78,9 +78,9 @@ template <typename Iterator, class HandlerT> struct APIGrammar : qi::grammar<Ite
|
|||||||
num_results = (-qi::lit('&')) >> qi::lit("num_results") >> '=' >>
|
num_results = (-qi::lit('&')) >> qi::lit("num_results") >> '=' >>
|
||||||
qi::short_[boost::bind(&HandlerT::setNumberOfResults, handler, ::_1)];
|
qi::short_[boost::bind(&HandlerT::setNumberOfResults, handler, ::_1)];
|
||||||
matching_beta = (-qi::lit('&')) >> qi::lit("matching_beta") >> '=' >>
|
matching_beta = (-qi::lit('&')) >> qi::lit("matching_beta") >> '=' >>
|
||||||
qi::short_[boost::bind(&HandlerT::setMatchingBeta, handler, ::_1)];
|
qi::float_[boost::bind(&HandlerT::setMatchingBeta, handler, ::_1)];
|
||||||
gps_precision = (-qi::lit('&')) >> qi::lit("gps_precision") >> '=' >>
|
gps_precision = (-qi::lit('&')) >> qi::lit("gps_precision") >> '=' >>
|
||||||
qi::short_[boost::bind(&HandlerT::setGPSPrecision, handler, ::_1)];
|
qi::float_[boost::bind(&HandlerT::setGPSPrecision, handler, ::_1)];
|
||||||
classify = (-qi::lit('&')) >> qi::lit("classify") >> '=' >>
|
classify = (-qi::lit('&')) >> qi::lit("classify") >> '=' >>
|
||||||
qi::bool_[boost::bind(&HandlerT::setClassify, handler, ::_1)];
|
qi::bool_[boost::bind(&HandlerT::setClassify, handler, ::_1)];
|
||||||
locs = (-qi::lit('&')) >> qi::lit("locs") >> '=' >>
|
locs = (-qi::lit('&')) >> qi::lit("locs") >> '=' >>
|
||||||
|
Loading…
Reference in New Issue
Block a user