/usr/share/doc/libtclap-dev/examples/test9.cpp is in libtclap-dev 1.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #include <string>
#include <iostream>
#include <algorithm>
#include "tclap/CmdLine.h"
using namespace TCLAP;
using namespace std;
int main(int argc, char** argv)
{
try {
CmdLine cmd("Command description message", ' ', "0.9",false);
SwitchArg reverseSwitch("r","reverse","REVERSE instead of FORWARDS", false);
cmd.add( reverseSwitch );
MultiSwitchArg verbose("V","verbose","Level of verbosity");
cmd.add( verbose );
MultiSwitchArg noise("N","noise","Level of noise",5);
cmd.add( noise );
UnlabeledValueArg<string> word("word","a random word", false, "string",
"won't see this",false);
cmd.add( word );
// Uncommenting the next arg will (correctly) cause an exception
// to be thrown.
// UnlabeledMultiArg<string> badword("badword","a bad word", false,"string");
//
// cmd.add( badword );
cmd.parse( argc, argv );
bool reverseName = reverseSwitch.getValue();
if ( reverseName )
cout << "REVERSE" << endl;
else
cout << "FORWARD" << endl;
if ( verbose.isSet() )
cout << "Verbose level: " << verbose.getValue() << endl;
if ( noise.isSet() )
cout << "Noise level: " << noise.getValue() << endl;
if ( word.isSet() )
cout << "Word: " << word.getValue() << endl;
} catch (ArgException &e) // catch any exceptions
{ cerr << "error: " << e.error() << " for arg " << e.argId() << endl; }
}
|