Parameter to be given on the command line Initialize options for example with name \a s
| 68 | int n; /// Parameter to be given on the command line |
| 69 | /// Initialize options for example with name \a s |
| 70 | BakerOptions(const char* s, int n0) |
| 71 | : Options(s), |
| 72 | _printStrategy("-printStrategy","Print strategy",false), |
| 73 | n(n0) { |
| 74 | add(_printStrategy); |
| 75 | } |
| 76 | /// Parse options from arguments \a argv (number is \a argc) |
| 77 | void parse(int& argc, char* argv[]) { |
| 78 | Options::parse(argc,argv); |