From db9001cfacdfdf8919e2aee4d829e9ba48687418 Mon Sep 17 00:00:00 2001 From: Norihiro Watanabe <norihiro.watanabe@ufz.de> Date: Fri, 19 Aug 2016 11:43:25 +0200 Subject: [PATCH] improve the tool description --- Applications/Utils/FileConverter/convertGEO.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Applications/Utils/FileConverter/convertGEO.cpp b/Applications/Utils/FileConverter/convertGEO.cpp index 4da2645dc67..67ddc4a2a82 100644 --- a/Applications/Utils/FileConverter/convertGEO.cpp +++ b/Applications/Utils/FileConverter/convertGEO.cpp @@ -25,13 +25,15 @@ int main (int argc, char* argv[]) { ApplicationsLib::LogogSetup logog_setup; - TCLAP::CmdLine cmd("Converts OGS geometric file into another file format.", ' ', BaseLib::BuildInfo::git_describe); + TCLAP::CmdLine cmd("Converts OGS geometry file into another file format. " + "Currently *.gml (OGS6 XML-based format) and *.gli (OGS5 format) formats are supported.", + ' ', BaseLib::BuildInfo::git_describe); TCLAP::ValueArg<std::string> argInputFileName("i", "input-file", - "the name of the gli file to be converted", true, + "the name of the geometry file to be converted", true, "", "file name"); cmd.add(argInputFileName); TCLAP::ValueArg<std::string> argOutputFileName("o", "output-file", - "the name of the new gml file", true, + "the name of the new geometry file whose file format is guessed from its file extension", true, "", "file name"); cmd.add(argOutputFileName); cmd.parse(argc, argv); -- GitLab