-
Notifications
You must be signed in to change notification settings - Fork 0
ProgramOptions
Steven Raasch edited this page Sep 15, 2015
·
1 revision
The main differences between GetOpt_pp
and Boost.ProgramOptions, and other similar tools, are:
- Less code to type: you don't need to pre-register all the options, and then check one by one;
- Instead, get the options as you need them, in the stream-like manner
- Simplicity: you just need to learn the manipulators (
Option
, andOptionPresent
). If you know streams (bet you do), you knowGetOpt_pp
It's not about one being better than the other. It's just about requirements of different needs.
//
Next: Acknowledgments
Back to Table of Contents