| 30 | }; |
| 31 | |
| 32 | struct same_mnemonic { |
| 33 | char mnemonic; |
| 34 | same_mnemonic(char mnemonic) : mnemonic(mnemonic) { } |
| 35 | bool operator()(const ProgramOptions::Option* a) { |
| 36 | return a->mnemonic() == mnemonic; |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 | ProgramOptions::ProgramOptions() |
| 41 | { |