Ich möchte, dass ein Text vor der Beschreibung der erlaubten Optionen gedruckt wird, wenn ich meine options_description drucke. Etwas wie :
This program counts from 1 to 10. <--- this is what is missing
Generic options:
-h [ --help ] Produce help message.
-v [ --version ] Show program name/version banner and exit.
Derzeit füge ich sie von Hand hinzu:
if (vm.count("help")) {
cout << "options_description\n\n" << my_options_description << endl;
return 1;
}
Ist es möglich, dies direkt im Objekt options_description zu speichern?