Made plasp’s help message more precise.

This commit is contained in:
Patrick Lühne 2016-06-10 01:28:13 +02:00
parent eb5a120286
commit d446c192cf

View File

@ -18,7 +18,7 @@ int main(int argc, char **argv)
("help,h", "Display this help message.") ("help,h", "Display this help message.")
("version,v", "Display version information.") ("version,v", "Display version information.")
("input,i", po::value<std::vector<std::string>>(), "Specify the SAS input file.") ("input,i", po::value<std::vector<std::string>>(), "Specify the SAS input file.")
("language,l", po::value<std::string>(), "Specify the input language (SAS or PDDL) explicitly (no automatic detection)."); ("language,l", po::value<std::string>(), "Specify the input language (SAS or PDDL). Omit for automatic detection.");
po::positional_options_description positionalOptionsDescription; po::positional_options_description positionalOptionsDescription;
positionalOptionsDescription.add("input", -1); positionalOptionsDescription.add("input", -1);