Skip to content
Snippets Groups Projects
Commit cffdfc2e authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[A/U/ME] Use TCLAP::SwitchArg instead of TCLAP::ValueArg.

parent 1632a7ee
No related branches found
No related tags found
No related merge requests found
......@@ -71,9 +71,10 @@ int main (int argc, char* argv[])
false, "bulk_face_ids", "string");
cmd.add(face_prop_name);
TCLAP::ValueArg<bool> use_ascii_arg(
"", "ascii_output", "use ascii format for data in the vtu output (0=false, 1=true)", false,
false, "boolean value");
TCLAP::SwitchArg use_ascii_arg("", "ascii-output",
"If the switch is set use ascii instead of "
"binary format for data in the vtu output.",
false);
cmd.add(use_ascii_arg);
cmd.parse(argc, argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment