Improved and reformatted help texts.

This commit is contained in:
Patrick Lühne 2016-11-23 03:36:48 +01:00
parent 9ccbda49b7
commit fbe351a85b
No known key found for this signature in database
GPG Key ID: 05F3611E97A70ABF
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ int main(int argc, char **argv)
po::options_description description("Allowed options");
description.add_options()
("help,h", "display this help message")
("version,v", "Display version information.")
("input,i", po::value<std::vector<std::string>>(), "Specify the PDDL or SAS input file.");
("help,h", "Display this help message")
("version,v", "Display version information")
("input,i", po::value<std::vector<std::string>>(), "Input files");
po::positional_options_description positionalOptionsDescription;
positionalOptionsDescription.add("input", -1);