File: test27.cpp

package info (click to toggle)
tclap 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, experimental, forky, sid, trixie
  • size: 10,584 kB
  • sloc: cpp: 3,724; xml: 1,028; sh: 855; makefile: 308; javascript: 214; ansic: 43
file content (26 lines) | stat: -rw-r--r-- 793 bytes parent folder | download | duplicates (2)
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
#include "tclap/CmdLine.h"
#include <iostream>
#include <string>

using namespace TCLAP;
using namespace std;

int main(int argc, char** argv)
{

    CmdLine cmd("test arg conversion operator");
    SwitchArg falseSwitch("f","false", "test false condition", cmd, false);
    SwitchArg trueSwitch("t","true", "tests true condition", cmd, true);
    ValueArg<string> strArg("s","str", "test string arg", false, "defStr", "string", cmd);
    ValueArg<int> intArg("i","int", "tests int arg", false, 4711, "integer", cmd);

    cmd.parse(argc, argv);

    string s = strArg;
    int i = intArg;

    cout << "for falseSwitch we got : " << falseSwitch << endl
	 << "for trueSwitch we got : " << trueSwitch << endl
	 << "for strArg we got : " << s << endl
	 << "for intArg we got : " << i << endl;
}