Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Boost guilty of being un-Boost-like?

I was just reading the intro to the Boost::Spirit LL Parser framework. The preface suggests that the author and creator likes to use such parsing technology to read in program options. Doesn't Boost have its own library for program options?

I am wondering, does the Boost committee review all the library notes for common themes and style? It seems the doc for each library have their own flavor to them.

Small gripe for an otherwise amazing piece of software, I just found it curious.

like image 886
ApplePieIsGood Avatar asked Dec 18 '08 21:12

ApplePieIsGood


1 Answers

Simply, Spirit existed before the Boost.Program-Options library. Now, I always use Boost.Program-Options instead of hand-rolling my own using Spirit.

like image 53
Joel de Guzman Avatar answered Oct 04 '22 04:10

Joel de Guzman