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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>tclap: TCLAP::Arg Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">tclap
 <span id="projectnumber">1.2.5</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',false,false,'search.php','Search');
});
/* @license-end */</script>
<div id="main-nav"></div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceTCLAP.html">TCLAP</a></li><li class="navelem"><a class="el" href="classTCLAP_1_1Arg.html">Arg</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="classTCLAP_1_1Arg-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">TCLAP::Arg Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div> </div>
</div><!--header-->
<div class="contents">
<p>A virtual base class that defines the essential data for all arguments.
<a href="classTCLAP_1_1Arg.html#details">More...</a></p>
<p><code>#include <<a class="el" href="Arg_8h_source.html">Arg.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for TCLAP::Arg:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg__inherit__graph.png" border="0" usemap="#aTCLAP_1_1Arg_inherit__map" alt="Inheritance graph"/></div>
<map name="aTCLAP_1_1Arg_inherit__map" id="aTCLAP_1_1Arg_inherit__map">
<area shape="rect" title="A virtual base class that defines the essential data for all arguments." alt="" coords="273,5,367,32"/>
<area shape="rect" href="classTCLAP_1_1MultiArg.html" title="An argument that allows multiple values of type T to be specified." alt="" coords="55,80,209,107"/>
<area shape="rect" href="classTCLAP_1_1SwitchArg.html" title="A simple switch argument." alt="" coords="253,80,387,107"/>
<area shape="rect" href="classTCLAP_1_1ValueArg.html" title="The basic labeled argument that parses a value." alt="" coords="432,80,589,107"/>
<area shape="rect" href="classTCLAP_1_1UnlabeledMultiArg.html" title="Just like a MultiArg, except that the arguments are unlabeled." alt="" coords="5,155,216,181"/>
<area shape="rect" href="classTCLAP_1_1MultiSwitchArg.html" title="A multiple switch argument." alt="" coords="239,155,401,181"/>
<area shape="rect" href="classTCLAP_1_1UnlabeledValueArg.html" title="The basic unlabeled argument that parses a value." alt="" coords="425,155,639,181"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for TCLAP::Arg:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg__coll__graph.png" border="0" usemap="#aTCLAP_1_1Arg_coll__map" alt="Collaboration graph"/></div>
<map name="aTCLAP_1_1Arg_coll__map" id="aTCLAP_1_1Arg_coll__map">
<area shape="rect" title="A virtual base class that defines the essential data for all arguments." alt="" coords="14,95,107,121"/>
<area shape="rect" href="classTCLAP_1_1Visitor.html" title="A base class that defines the interface for visitors." alt="" coords="5,5,116,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a15734a7cf52c8c4ab6df70f0997bbee3"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a15734a7cf52c8c4ab6df70f0997bbee3">~Arg</a> ()</td></tr>
<tr class="memdesc:a15734a7cf52c8c4ab6df70f0997bbee3"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="classTCLAP_1_1Arg.html#a15734a7cf52c8c4ab6df70f0997bbee3">More...</a><br /></td></tr>
<tr class="separator:a15734a7cf52c8c4ab6df70f0997bbee3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99558be2748fa006b8bdf4cdd12534ca"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a99558be2748fa006b8bdf4cdd12534ca">addToList</a> (std::list< <a class="el" href="classTCLAP_1_1Arg.html">Arg</a> * > &argList) const</td></tr>
<tr class="memdesc:a99558be2748fa006b8bdf4cdd12534ca"><td class="mdescLeft"> </td><td class="mdescRight">Adds this to the specified list of Args. <a href="classTCLAP_1_1Arg.html#a99558be2748fa006b8bdf4cdd12534ca">More...</a><br /></td></tr>
<tr class="separator:a99558be2748fa006b8bdf4cdd12534ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61ffe2f660a76111d256f7b22a686146"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a61ffe2f660a76111d256f7b22a686146">processArg</a> (int *i, std::vector< std::string > &args)=0</td></tr>
<tr class="memdesc:a61ffe2f660a76111d256f7b22a686146"><td class="mdescLeft"> </td><td class="mdescRight">Pure virtual method meant to handle the parsing and value assignment of the string on the command line. <a href="classTCLAP_1_1Arg.html#a61ffe2f660a76111d256f7b22a686146">More...</a><br /></td></tr>
<tr class="separator:a61ffe2f660a76111d256f7b22a686146"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af860e26469b06349e331b308685c5d74"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#af860e26469b06349e331b308685c5d74">operator==</a> (const <a class="el" href="classTCLAP_1_1Arg.html">Arg</a> &a) const</td></tr>
<tr class="memdesc:af860e26469b06349e331b308685c5d74"><td class="mdescLeft"> </td><td class="mdescRight">Operator ==. <a href="classTCLAP_1_1Arg.html#af860e26469b06349e331b308685c5d74">More...</a><br /></td></tr>
<tr class="separator:af860e26469b06349e331b308685c5d74"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a69b745d672e972c7db437fe0158fa890"><td class="memItemLeft" align="right" valign="top">const std::string & </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a69b745d672e972c7db437fe0158fa890">getFlag</a> () const</td></tr>
<tr class="memdesc:a69b745d672e972c7db437fe0158fa890"><td class="mdescLeft"> </td><td class="mdescRight">Returns the argument flag. <a href="classTCLAP_1_1Arg.html#a69b745d672e972c7db437fe0158fa890">More...</a><br /></td></tr>
<tr class="separator:a69b745d672e972c7db437fe0158fa890"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bd2bd8e42b75e2a5421dfc143b70bb8"><td class="memItemLeft" align="right" valign="top">const std::string & </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a9bd2bd8e42b75e2a5421dfc143b70bb8">getName</a> () const</td></tr>
<tr class="memdesc:a9bd2bd8e42b75e2a5421dfc143b70bb8"><td class="mdescLeft"> </td><td class="mdescRight">Returns the argument name. <a href="classTCLAP_1_1Arg.html#a9bd2bd8e42b75e2a5421dfc143b70bb8">More...</a><br /></td></tr>
<tr class="separator:a9bd2bd8e42b75e2a5421dfc143b70bb8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab07e6da4a86c360f5a3e1a71f201fe3c"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ab07e6da4a86c360f5a3e1a71f201fe3c">getDescription</a> () const</td></tr>
<tr class="memdesc:ab07e6da4a86c360f5a3e1a71f201fe3c"><td class="mdescLeft"> </td><td class="mdescRight">Returns the argument description. <a href="classTCLAP_1_1Arg.html#ab07e6da4a86c360f5a3e1a71f201fe3c">More...</a><br /></td></tr>
<tr class="separator:ab07e6da4a86c360f5a3e1a71f201fe3c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec9381ca612a2d37239944b8dd512a7e"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#aec9381ca612a2d37239944b8dd512a7e">isRequired</a> () const</td></tr>
<tr class="memdesc:aec9381ca612a2d37239944b8dd512a7e"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether the argument is required. <a href="classTCLAP_1_1Arg.html#aec9381ca612a2d37239944b8dd512a7e">More...</a><br /></td></tr>
<tr class="separator:aec9381ca612a2d37239944b8dd512a7e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58e3de560f364d0bb6bdf36ab533a6fd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a58e3de560f364d0bb6bdf36ab533a6fd">forceRequired</a> ()</td></tr>
<tr class="memdesc:a58e3de560f364d0bb6bdf36ab533a6fd"><td class="mdescLeft"> </td><td class="mdescRight">Sets _required to true. <a href="classTCLAP_1_1Arg.html#a58e3de560f364d0bb6bdf36ab533a6fd">More...</a><br /></td></tr>
<tr class="separator:a58e3de560f364d0bb6bdf36ab533a6fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec525c8092e56f7f5aa455e71bc72374"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#aec525c8092e56f7f5aa455e71bc72374">xorSet</a> ()</td></tr>
<tr class="memdesc:aec525c8092e56f7f5aa455e71bc72374"><td class="mdescLeft"> </td><td class="mdescRight">Sets the _alreadySet value to true. <a href="classTCLAP_1_1Arg.html#aec525c8092e56f7f5aa455e71bc72374">More...</a><br /></td></tr>
<tr class="separator:aec525c8092e56f7f5aa455e71bc72374"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7bdc92de1b8628a02a56be067ca37468"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a7bdc92de1b8628a02a56be067ca37468">isValueRequired</a> () const</td></tr>
<tr class="memdesc:a7bdc92de1b8628a02a56be067ca37468"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether a value must be specified for argument. <a href="classTCLAP_1_1Arg.html#a7bdc92de1b8628a02a56be067ca37468">More...</a><br /></td></tr>
<tr class="separator:a7bdc92de1b8628a02a56be067ca37468"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15d126427847cc782cf53ab7364659df"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a15d126427847cc782cf53ab7364659df">isSet</a> () const</td></tr>
<tr class="memdesc:a15d126427847cc782cf53ab7364659df"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether the argument has already been set. <a href="classTCLAP_1_1Arg.html#a15d126427847cc782cf53ab7364659df">More...</a><br /></td></tr>
<tr class="separator:a15d126427847cc782cf53ab7364659df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e0a80c4d980d0cc59372382fab03413"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a4e0a80c4d980d0cc59372382fab03413">isIgnoreable</a> () const</td></tr>
<tr class="memdesc:a4e0a80c4d980d0cc59372382fab03413"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether the argument can be ignored, if desired. <a href="classTCLAP_1_1Arg.html#a4e0a80c4d980d0cc59372382fab03413">More...</a><br /></td></tr>
<tr class="separator:a4e0a80c4d980d0cc59372382fab03413"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7c68cefa82cce90a0e7be0b149c9407"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ac7c68cefa82cce90a0e7be0b149c9407">argMatches</a> (const std::string &s) const</td></tr>
<tr class="memdesc:ac7c68cefa82cce90a0e7be0b149c9407"><td class="mdescLeft"> </td><td class="mdescRight">A method that tests whether a string matches this argument. <a href="classTCLAP_1_1Arg.html#ac7c68cefa82cce90a0e7be0b149c9407">More...</a><br /></td></tr>
<tr class="separator:ac7c68cefa82cce90a0e7be0b149c9407"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf04c48b5e718098b0b8d9bcb28eb706"><td class="memItemLeft" align="right" valign="top">virtual std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#adf04c48b5e718098b0b8d9bcb28eb706">toString</a> () const</td></tr>
<tr class="memdesc:adf04c48b5e718098b0b8d9bcb28eb706"><td class="mdescLeft"> </td><td class="mdescRight">Returns a simple string representation of the argument. <a href="classTCLAP_1_1Arg.html#adf04c48b5e718098b0b8d9bcb28eb706">More...</a><br /></td></tr>
<tr class="separator:adf04c48b5e718098b0b8d9bcb28eb706"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af130aaa674c3531a7cea7efe31afa5df"><td class="memItemLeft" align="right" valign="top">virtual std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#af130aaa674c3531a7cea7efe31afa5df">shortID</a> (const std::string &valueId="val") const</td></tr>
<tr class="memdesc:af130aaa674c3531a7cea7efe31afa5df"><td class="mdescLeft"> </td><td class="mdescRight">Returns a short ID for the usage. <a href="classTCLAP_1_1Arg.html#af130aaa674c3531a7cea7efe31afa5df">More...</a><br /></td></tr>
<tr class="separator:af130aaa674c3531a7cea7efe31afa5df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a71b113dfa30f35551cc5b71f6389e2"><td class="memItemLeft" align="right" valign="top">virtual std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a1a71b113dfa30f35551cc5b71f6389e2">longID</a> (const std::string &valueId="val") const</td></tr>
<tr class="memdesc:a1a71b113dfa30f35551cc5b71f6389e2"><td class="mdescLeft"> </td><td class="mdescRight">Returns a long ID for the usage. <a href="classTCLAP_1_1Arg.html#a1a71b113dfa30f35551cc5b71f6389e2">More...</a><br /></td></tr>
<tr class="separator:a1a71b113dfa30f35551cc5b71f6389e2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad873684d1e1eaff4570e9066b14ba325"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ad873684d1e1eaff4570e9066b14ba325">trimFlag</a> (std::string &flag, std::string &value) const</td></tr>
<tr class="memdesc:ad873684d1e1eaff4570e9066b14ba325"><td class="mdescLeft"> </td><td class="mdescRight">Trims a value off of the flag. <a href="classTCLAP_1_1Arg.html#ad873684d1e1eaff4570e9066b14ba325">More...</a><br /></td></tr>
<tr class="separator:ad873684d1e1eaff4570e9066b14ba325"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f7d53b03703eaec40df9cd8c02d275f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a2f7d53b03703eaec40df9cd8c02d275f">_hasBlanks</a> (const std::string &s) const</td></tr>
<tr class="memdesc:a2f7d53b03703eaec40df9cd8c02d275f"><td class="mdescLeft"> </td><td class="mdescRight">Checks whether a given string has blank chars, indicating that it is a combined <a class="el" href="classTCLAP_1_1SwitchArg.html" title="A simple switch argument.">SwitchArg</a>. <a href="classTCLAP_1_1Arg.html#a2f7d53b03703eaec40df9cd8c02d275f">More...</a><br /></td></tr>
<tr class="separator:a2f7d53b03703eaec40df9cd8c02d275f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae5c959f31af1a484a8af06f84a6e8b0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#aae5c959f31af1a484a8af06f84a6e8b0">setRequireLabel</a> (const std::string &s)</td></tr>
<tr class="memdesc:aae5c959f31af1a484a8af06f84a6e8b0"><td class="mdescLeft"> </td><td class="mdescRight">Sets the requireLabel. <a href="classTCLAP_1_1Arg.html#aae5c959f31af1a484a8af06f84a6e8b0">More...</a><br /></td></tr>
<tr class="separator:aae5c959f31af1a484a8af06f84a6e8b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9aef735d37ef95ca1b7dc7a07850b984"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a9aef735d37ef95ca1b7dc7a07850b984">allowMore</a> ()</td></tr>
<tr class="memdesc:a9aef735d37ef95ca1b7dc7a07850b984"><td class="mdescLeft"> </td><td class="mdescRight">Used for MultiArgs and <a class="el" href="classTCLAP_1_1XorHandler.html" title="This class handles lists of Arg's that are to be XOR'd on the command line.">XorHandler</a> to determine whether args can still be set. <a href="classTCLAP_1_1Arg.html#a9aef735d37ef95ca1b7dc7a07850b984">More...</a><br /></td></tr>
<tr class="separator:a9aef735d37ef95ca1b7dc7a07850b984"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad356870538a255d639e26b30330202ae"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ad356870538a255d639e26b30330202ae">acceptsMultipleValues</a> ()</td></tr>
<tr class="memdesc:ad356870538a255d639e26b30330202ae"><td class="mdescLeft"> </td><td class="mdescRight">Use by output classes to determine whether an <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> accepts multiple values. <a href="classTCLAP_1_1Arg.html#ad356870538a255d639e26b30330202ae">More...</a><br /></td></tr>
<tr class="separator:ad356870538a255d639e26b30330202ae"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5b5dc9a9b0381561f0684523f943a2c"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ab5b5dc9a9b0381561f0684523f943a2c">reset</a> ()</td></tr>
<tr class="memdesc:ab5b5dc9a9b0381561f0684523f943a2c"><td class="mdescLeft"> </td><td class="mdescRight">Clears the <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> object and allows it to be reused by new command lines. <a href="classTCLAP_1_1Arg.html#ab5b5dc9a9b0381561f0684523f943a2c">More...</a><br /></td></tr>
<tr class="separator:ab5b5dc9a9b0381561f0684523f943a2c"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a24165d31c1ec70777fb201356b6cdf6a"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a24165d31c1ec70777fb201356b6cdf6a">beginIgnoring</a> ()</td></tr>
<tr class="memdesc:a24165d31c1ec70777fb201356b6cdf6a"><td class="mdescLeft"> </td><td class="mdescRight">Begin ignoring arguments since the "--" argument was specified. <a href="classTCLAP_1_1Arg.html#a24165d31c1ec70777fb201356b6cdf6a">More...</a><br /></td></tr>
<tr class="separator:a24165d31c1ec70777fb201356b6cdf6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d412155b8f9b4956e64e91c48e55a3b"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a4d412155b8f9b4956e64e91c48e55a3b">ignoreRest</a> ()</td></tr>
<tr class="memdesc:a4d412155b8f9b4956e64e91c48e55a3b"><td class="mdescLeft"> </td><td class="mdescRight">Whether to ignore the rest. <a href="classTCLAP_1_1Arg.html#a4d412155b8f9b4956e64e91c48e55a3b">More...</a><br /></td></tr>
<tr class="separator:a4d412155b8f9b4956e64e91c48e55a3b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadef6ca7e40f5b3d3fd03186976aea7e"><td class="memItemLeft" align="right" valign="top">static char </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e">delimiter</a> ()</td></tr>
<tr class="memdesc:aadef6ca7e40f5b3d3fd03186976aea7e"><td class="mdescLeft"> </td><td class="mdescRight">The delimiter that separates an argument flag/name from the value. <a href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e">More...</a><br /></td></tr>
<tr class="separator:aadef6ca7e40f5b3d3fd03186976aea7e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0abd38f46dbf7d267078134a4817fbb2"><td class="memItemLeft" align="right" valign="top">static char </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a0abd38f46dbf7d267078134a4817fbb2">blankChar</a> ()</td></tr>
<tr class="memdesc:a0abd38f46dbf7d267078134a4817fbb2"><td class="mdescLeft"> </td><td class="mdescRight">The char used as a place holder when SwitchArgs are combined. <a href="classTCLAP_1_1Arg.html#a0abd38f46dbf7d267078134a4817fbb2">More...</a><br /></td></tr>
<tr class="separator:a0abd38f46dbf7d267078134a4817fbb2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f9f6af439993e9151bd5a6cd2a63dad"><td class="memItemLeft" align="right" valign="top">static char </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a7f9f6af439993e9151bd5a6cd2a63dad">flagStartChar</a> ()</td></tr>
<tr class="separator:a7f9f6af439993e9151bd5a6cd2a63dad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8e739295b0f75028e7bff6d670d97a1"><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1">flagStartString</a> ()</td></tr>
<tr class="separator:af8e739295b0f75028e7bff6d670d97a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1df2134870528b80f9f35347fef6fd14"><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14">nameStartString</a> ()</td></tr>
<tr class="separator:a1df2134870528b80f9f35347fef6fd14"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ce0cbe4effd44679ca11f25e3c318e7"><td class="memItemLeft" align="right" valign="top">static const std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a6ce0cbe4effd44679ca11f25e3c318e7">ignoreNameString</a> ()</td></tr>
<tr class="memdesc:a6ce0cbe4effd44679ca11f25e3c318e7"><td class="mdescLeft"> </td><td class="mdescRight">The name used to identify the ignore rest argument. <a href="classTCLAP_1_1Arg.html#a6ce0cbe4effd44679ca11f25e3c318e7">More...</a><br /></td></tr>
<tr class="separator:a6ce0cbe4effd44679ca11f25e3c318e7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad059b63424001b9aedb4c019e2854c3c"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ad059b63424001b9aedb4c019e2854c3c">setDelimiter</a> (char c)</td></tr>
<tr class="memdesc:ad059b63424001b9aedb4c019e2854c3c"><td class="mdescLeft"> </td><td class="mdescRight">Sets the delimiter for all arguments. <a href="classTCLAP_1_1Arg.html#ad059b63424001b9aedb4c019e2854c3c">More...</a><br /></td></tr>
<tr class="separator:ad059b63424001b9aedb4c019e2854c3c"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a0f4cda4e34213da82df040e162287c4b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a0f4cda4e34213da82df040e162287c4b">_checkWithVisitor</a> () const</td></tr>
<tr class="memdesc:a0f4cda4e34213da82df040e162287c4b"><td class="mdescLeft"> </td><td class="mdescRight">Performs the special handling described by the <a class="el" href="classTCLAP_1_1Visitor.html" title="A base class that defines the interface for visitors.">Visitor</a>. <a href="classTCLAP_1_1Arg.html#a0f4cda4e34213da82df040e162287c4b">More...</a><br /></td></tr>
<tr class="separator:a0f4cda4e34213da82df040e162287c4b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab25a06db5edf82a5b965b641b3c63372"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ab25a06db5edf82a5b965b641b3c63372">Arg</a> (const std::string &flag, const std::string &name, const std::string &desc, bool req, bool valreq, <a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> *v=NULL)</td></tr>
<tr class="memdesc:ab25a06db5edf82a5b965b641b3c63372"><td class="mdescLeft"> </td><td class="mdescRight">Primary constructor. <a href="classTCLAP_1_1Arg.html#ab25a06db5edf82a5b965b641b3c63372">More...</a><br /></td></tr>
<tr class="separator:ab25a06db5edf82a5b965b641b3c63372"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr class="memitem:ae68407a0a8223023ad0ae3b9dc7986f5"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ae68407a0a8223023ad0ae3b9dc7986f5">_flag</a></td></tr>
<tr class="memdesc:ae68407a0a8223023ad0ae3b9dc7986f5"><td class="mdescLeft"> </td><td class="mdescRight">The single char flag used to identify the argument. <a href="classTCLAP_1_1Arg.html#ae68407a0a8223023ad0ae3b9dc7986f5">More...</a><br /></td></tr>
<tr class="separator:ae68407a0a8223023ad0ae3b9dc7986f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0f138057a99fb5d94ff4acb41a083aa"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ac0f138057a99fb5d94ff4acb41a083aa">_name</a></td></tr>
<tr class="memdesc:ac0f138057a99fb5d94ff4acb41a083aa"><td class="mdescLeft"> </td><td class="mdescRight">A single word namd identifying the argument. <a href="classTCLAP_1_1Arg.html#ac0f138057a99fb5d94ff4acb41a083aa">More...</a><br /></td></tr>
<tr class="separator:ac0f138057a99fb5d94ff4acb41a083aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9882fe256eaab01ac53db54ac657d272"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a9882fe256eaab01ac53db54ac657d272">_description</a></td></tr>
<tr class="memdesc:a9882fe256eaab01ac53db54ac657d272"><td class="mdescLeft"> </td><td class="mdescRight">Description of the argument. <a href="classTCLAP_1_1Arg.html#a9882fe256eaab01ac53db54ac657d272">More...</a><br /></td></tr>
<tr class="separator:a9882fe256eaab01ac53db54ac657d272"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad16408bd1ca4d8b1d14d6c5129545a84"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ad16408bd1ca4d8b1d14d6c5129545a84">_required</a></td></tr>
<tr class="memdesc:ad16408bd1ca4d8b1d14d6c5129545a84"><td class="mdescLeft"> </td><td class="mdescRight">Indicating whether the argument is required. <a href="classTCLAP_1_1Arg.html#ad16408bd1ca4d8b1d14d6c5129545a84">More...</a><br /></td></tr>
<tr class="separator:ad16408bd1ca4d8b1d14d6c5129545a84"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ed097a868e34a0c4f6062ead744ac54"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a2ed097a868e34a0c4f6062ead744ac54">_requireLabel</a></td></tr>
<tr class="memdesc:a2ed097a868e34a0c4f6062ead744ac54"><td class="mdescLeft"> </td><td class="mdescRight">Label to be used in usage description. <a href="classTCLAP_1_1Arg.html#a2ed097a868e34a0c4f6062ead744ac54">More...</a><br /></td></tr>
<tr class="separator:a2ed097a868e34a0c4f6062ead744ac54"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a776682b7e19f4dc231bbad3d10034dfa"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a776682b7e19f4dc231bbad3d10034dfa">_valueRequired</a></td></tr>
<tr class="memdesc:a776682b7e19f4dc231bbad3d10034dfa"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether a value is required for the argument. <a href="classTCLAP_1_1Arg.html#a776682b7e19f4dc231bbad3d10034dfa">More...</a><br /></td></tr>
<tr class="separator:a776682b7e19f4dc231bbad3d10034dfa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a829e32129857d2683e5791a5df1208ec"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a829e32129857d2683e5791a5df1208ec">_alreadySet</a></td></tr>
<tr class="memdesc:a829e32129857d2683e5791a5df1208ec"><td class="mdescLeft"> </td><td class="mdescRight">Indicates whether the argument has been set. <a href="classTCLAP_1_1Arg.html#a829e32129857d2683e5791a5df1208ec">More...</a><br /></td></tr>
<tr class="separator:a829e32129857d2683e5791a5df1208ec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9ff037e92c9fa5bd85e532f61899300"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#aa9ff037e92c9fa5bd85e532f61899300">_visitor</a></td></tr>
<tr class="memdesc:aa9ff037e92c9fa5bd85e532f61899300"><td class="mdescLeft"> </td><td class="mdescRight">A pointer to a visitor object. <a href="classTCLAP_1_1Arg.html#aa9ff037e92c9fa5bd85e532f61899300">More...</a><br /></td></tr>
<tr class="separator:aa9ff037e92c9fa5bd85e532f61899300"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9832bb7564f4ab472bd51b7b1bbc683f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a9832bb7564f4ab472bd51b7b1bbc683f">_ignoreable</a></td></tr>
<tr class="memdesc:a9832bb7564f4ab472bd51b7b1bbc683f"><td class="mdescLeft"> </td><td class="mdescRight">Whether this argument can be ignored, if desired. <a href="classTCLAP_1_1Arg.html#a9832bb7564f4ab472bd51b7b1bbc683f">More...</a><br /></td></tr>
<tr class="separator:a9832bb7564f4ab472bd51b7b1bbc683f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab413bd1d8a7ecf3c89672ee23ef791ba"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#ab413bd1d8a7ecf3c89672ee23ef791ba">_xorSet</a></td></tr>
<tr class="memdesc:ab413bd1d8a7ecf3c89672ee23ef791ba"><td class="mdescLeft"> </td><td class="mdescRight">Indicates that the arg was set as part of an XOR and not on the command line. <a href="classTCLAP_1_1Arg.html#ab413bd1d8a7ecf3c89672ee23ef791ba">More...</a><br /></td></tr>
<tr class="separator:ab413bd1d8a7ecf3c89672ee23ef791ba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13130a9a5d22c57a6d42a8883c9b1e0f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1Arg.html#a13130a9a5d22c57a6d42a8883c9b1e0f">_acceptsMultipleValues</a></td></tr>
<tr class="separator:a13130a9a5d22c57a6d42a8883c9b1e0f"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A virtual base class that defines the essential data for all arguments. </p>
<p>This class, or one of its existing children, must be subclassed to do anything. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00055">55</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="ab25a06db5edf82a5b965b641b3c63372"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab25a06db5edf82a5b965b641b3c63372">◆ </a></span>Arg()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">TCLAP::Arg::Arg </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>flag</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>name</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>desc</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>req</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>valreq</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> * </td>
<td class="paramname"><em>v</em> = <code>NULL</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Primary constructor. </p>
<p>YOU (yes you) should NEVER construct an <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> directly, this is a base class that is extended by various children that are meant to be used. Use <a class="el" href="classTCLAP_1_1SwitchArg.html" title="A simple switch argument.">SwitchArg</a>, <a class="el" href="classTCLAP_1_1ValueArg.html" title="The basic labeled argument that parses a value.">ValueArg</a>, <a class="el" href="classTCLAP_1_1MultiArg.html" title="An argument that allows multiple values of type T to be specified.">MultiArg</a>, <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html" title="The basic unlabeled argument that parses a value.">UnlabeledValueArg</a>, or <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html" title="Just like a MultiArg, except that the arguments are unlabeled.">UnlabeledMultiArg</a> instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The flag identifying the argument. </td></tr>
<tr><td class="paramname">name</td><td>- The name identifying the argument. </td></tr>
<tr><td class="paramname">desc</td><td>- The description of the argument, used in the usage. </td></tr>
<tr><td class="paramname">req</td><td>- Whether the argument is required. </td></tr>
<tr><td class="paramname">valreq</td><td>- Whether the a value is required for the argument. </td></tr>
<tr><td class="paramname">v</td><td>- The visitor checked by the argument. Defaults to NULL. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00453">453</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, <a class="el" href="Arg_8h_source.html#l00098">_name</a>, <a class="el" href="Arg_8h_source.html#l00227">flagStartString()</a>, <a class="el" href="Arg_8h_source.html#l00241">ignoreNameString()</a>, <a class="el" href="Arg_8h_source.html#l00236">nameStartString()</a>, and <a class="el" href="Arg_8h_source.html#l00590">toString()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_ab25a06db5edf82a5b965b641b3c63372_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_ab25a06db5edf82a5b965b641b3c63372_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_ab25a06db5edf82a5b965b641b3c63372_cgraph" id="aclassTCLAP_1_1Arg_ab25a06db5edf82a5b965b641b3c63372_cgraph">
<area shape="rect" title="Primary constructor." alt="" coords="5,56,127,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="433,56,617,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a6ce0cbe4effd44679ca11f25e3c318e7" title="The name used to identify the ignore rest argument." alt="" coords="175,31,380,58"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="428,119,623,146"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#adf04c48b5e718098b0b8d9bcb28eb706" title="Returns a simple string representation of the argument." alt="" coords="204,82,351,108"/>
</map>
</div>
</div>
</div>
<a id="a15734a7cf52c8c4ab6df70f0997bbee3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a15734a7cf52c8c4ab6df70f0997bbee3">◆ </a></span>~Arg()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">TCLAP::Arg::~Arg </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Destructor. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00494">494</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a0f4cda4e34213da82df040e162287c4b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0f4cda4e34213da82df040e162287c4b">◆ </a></span>_checkWithVisitor()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::_checkWithVisitor </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Performs the special handling described by the <a class="el" href="classTCLAP_1_1Visitor.html" title="A base class that defines the interface for visitors.">Visitor</a>. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00602">602</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00136">_visitor</a>, and <a class="el" href="classTCLAP_1_1Visitor.html#a175c37e1cdaf8da483b90480995c4158">TCLAP::Visitor::visit()</a>.</p>
<p class="reference">Referenced by <a class="el" href="MultiSwitchArg_8h_source.html#l00156">TCLAP::MultiSwitchArg::processArg()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_a0f4cda4e34213da82df040e162287c4b_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_a0f4cda4e34213da82df040e162287c4b_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_a0f4cda4e34213da82df040e162287c4b_cgraph" id="aclassTCLAP_1_1Arg_a0f4cda4e34213da82df040e162287c4b_cgraph">
<area shape="rect" title="Performs the special handling described by the Visitor." alt="" coords="5,5,212,32"/>
<area shape="rect" href="classTCLAP_1_1Visitor.html#a175c37e1cdaf8da483b90480995c4158" title="This method (to implemented by children) will be called when the visitor is visited." alt="" coords="260,5,403,32"/>
</map>
</div>
</div>
</div>
<a id="a2f7d53b03703eaec40df9cd8c02d275f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2f7d53b03703eaec40df9cd8c02d275f">◆ </a></span>_hasBlanks()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_hasBlanks </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Checks whether a given string has blank chars, indicating that it is a combined <a class="el" href="classTCLAP_1_1SwitchArg.html" title="A simple switch argument.">SwitchArg</a>. </p>
<p>Implementation of _hasBlanks.</p>
<p>If so, return true, otherwise return false. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">s</td><td>- string to be checked. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00632">632</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00208">blankChar()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_a2f7d53b03703eaec40df9cd8c02d275f_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_a2f7d53b03703eaec40df9cd8c02d275f_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_a2f7d53b03703eaec40df9cd8c02d275f_cgraph" id="aclassTCLAP_1_1Arg_a2f7d53b03703eaec40df9cd8c02d275f_cgraph">
<area shape="rect" title="Checks whether a given string has blank chars, indicating that it is a combined SwitchArg." alt="" coords="5,5,175,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a0abd38f46dbf7d267078134a4817fbb2" title="The char used as a place holder when SwitchArgs are combined." alt="" coords="223,5,383,32"/>
</map>
</div>
</div>
</div>
<a id="ad356870538a255d639e26b30330202ae"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad356870538a255d639e26b30330202ae">◆ </a></span>acceptsMultipleValues()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::acceptsMultipleValues </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Use by output classes to determine whether an <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> accepts multiple values. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00665">665</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00149">_acceptsMultipleValues</a>.</p>
<p class="reference">Referenced by <a class="el" href="ZshCompletionOutput_8h_source.html#l00284">TCLAP::ZshCompletionOutput::getMutexList()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00170">TCLAP::ZshCompletionOutput::printArg()</a>, and <a class="el" href="DocBookOutput_8h_source.html#l00214">TCLAP::DocBookOutput::printShortArg()</a>.</p>
</div>
</div>
<a id="a99558be2748fa006b8bdf4cdd12534ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a99558be2748fa006b8bdf4cdd12534ca">◆ </a></span>addToList()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::addToList </td>
<td>(</td>
<td class="paramtype">std::list< <a class="el" href="classTCLAP_1_1Arg.html">Arg</a> * > & </td>
<td class="paramname"><em>argList</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Adds this to the specified list of Args. </p>
<p>Overridden by Args that need to added to the end of the list.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">argList</td><td>- The list to add this to. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html#a4e32724545f724f8687ae04d0871855d">TCLAP::UnlabeledValueArg< T ></a>, and <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a484acd4108fa9c6295ee0c425dc16912">TCLAP::UnlabeledMultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00655">655</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00431">TCLAP::CmdLine::add()</a>.</p>
</div>
</div>
<a id="a9aef735d37ef95ca1b7dc7a07850b984"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9aef735d37ef95ca1b7dc7a07850b984">◆ </a></span>allowMore()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::allowMore </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Used for MultiArgs and <a class="el" href="classTCLAP_1_1XorHandler.html" title="This class handles lists of Arg's that are to be XOR'd on the command line.">XorHandler</a> to determine whether args can still be set. </p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1MultiArg.html#ab05097627c81cd65975fa1b99fae9bd0">TCLAP::MultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00660">660</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
</div>
</div>
<a id="ac7c68cefa82cce90a0e7be0b149c9407"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac7c68cefa82cce90a0e7be0b149c9407">◆ </a></span>argMatches()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::argMatches </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A method that tests whether a string matches this argument. </p>
<p>This is generally called by the <a class="el" href="classTCLAP_1_1Arg.html#a61ffe2f660a76111d256f7b22a686146" title="Pure virtual method meant to handle the parsing and value assignment of the string on the command lin...">processArg()</a> method. This method could be re-implemented by a child to change how arguments are specified on the command line. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">s</td><td>- The string to be compared to the flag/name to determine whether the arg matches. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00581">581</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, <a class="el" href="Arg_8h_source.html#l00098">_name</a>, <a class="el" href="Arg_8h_source.html#l00227">flagStartString()</a>, and <a class="el" href="Arg_8h_source.html#l00236">nameStartString()</a>.</p>
<p class="reference">Referenced by <a class="el" href="MultiSwitchArg_8h_source.html#l00156">TCLAP::MultiSwitchArg::processArg()</a>, and <a class="el" href="SwitchArg_8h_source.html#l00230">TCLAP::SwitchArg::processArg()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_ac7c68cefa82cce90a0e7be0b149c9407_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_ac7c68cefa82cce90a0e7be0b149c9407_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_ac7c68cefa82cce90a0e7be0b149c9407_cgraph" id="aclassTCLAP_1_1Arg_ac7c68cefa82cce90a0e7be0b149c9407_cgraph">
<area shape="rect" title="A method that tests whether a string matches this argument." alt="" coords="5,31,175,57"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="228,5,412,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="223,56,417,83"/>
</map>
</div>
</div>
</div>
<a id="a24165d31c1ec70777fb201356b6cdf6a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a24165d31c1ec70777fb201356b6cdf6a">◆ </a></span>beginIgnoring()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void TCLAP::Arg::beginIgnoring </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Begin ignoring arguments since the "--" argument was specified. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00191">191</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="IgnoreRestVisitor_8h_source.html#l00049">TCLAP::IgnoreRestVisitor::visit()</a>.</p>
</div>
</div>
<a id="a0abd38f46dbf7d267078134a4817fbb2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0abd38f46dbf7d267078134a4817fbb2">◆ </a></span>blankChar()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static char TCLAP::Arg::blankChar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The char used as a place holder when SwitchArgs are combined. </p>
<p>Currently set to the bell char (ASCII 7). </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00208">208</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00530">TCLAP::CmdLine::_emptyCombined()</a>, <a class="el" href="Arg_8h_source.html#l00632">_hasBlanks()</a>, and <a class="el" href="SwitchArg_8h_source.html#l00176">TCLAP::SwitchArg::combinedSwitchesMatch()</a>.</p>
</div>
</div>
<a id="aadef6ca7e40f5b3d3fd03186976aea7e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aadef6ca7e40f5b3d3fd03186976aea7e">◆ </a></span>delimiter()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static char TCLAP::Arg::delimiter </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The delimiter that separates an argument flag/name from the value. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00202">202</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="SwitchArg_8h_source.html#l00176">TCLAP::SwitchArg::combinedSwitchesMatch()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, <a class="el" href="MultiArg_8h_source.html#l00308">TCLAP::MultiArg< T >::processArg()</a>, <a class="el" href="ValueArg_8h_source.html#l00335">TCLAP::ValueArg< T >::processArg()</a>, <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>, and <a class="el" href="Arg_8h_source.html#l00611">trimFlag()</a>.</p>
</div>
</div>
<a id="a7f9f6af439993e9151bd5a6cd2a63dad"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7f9f6af439993e9151bd5a6cd2a63dad">◆ </a></span>flagStartChar()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static char TCLAP::Arg::flagStartChar </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00217">217</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00215">TCLAP_FLAGSTARTCHAR</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00530">TCLAP::CmdLine::_emptyCombined()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00284">TCLAP::ZshCompletionOutput::getMutexList()</a>, and <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>.</p>
</div>
</div>
<a id="af8e739295b0f75028e7bff6d670d97a1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af8e739295b0f75028e7bff6d670d97a1">◆ </a></span>flagStartString()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const std::string TCLAP::Arg::flagStartString </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00227">227</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00225">TCLAP_FLAGSTARTSTRING</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>, <a class="el" href="Arg_8h_source.html#l00581">argMatches()</a>, <a class="el" href="SwitchArg_8h_source.html#l00176">TCLAP::SwitchArg::combinedSwitchesMatch()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>, and <a class="el" href="Arg_8h_source.html#l00590">toString()</a>.</p>
</div>
</div>
<a id="a58e3de560f364d0bb6bdf36ab533a6fd"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a58e3de560f364d0bb6bdf36ab533a6fd">◆ </a></span>forceRequired()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::forceRequired </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets _required to true. </p>
<p>This is used by the <a class="el" href="classTCLAP_1_1XorHandler.html" title="This class handles lists of Arg's that are to be XOR'd on the command line.">XorHandler</a>. You really have no reason to ever use it. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00641">641</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00108">_required</a>.</p>
</div>
</div>
<a id="ab07e6da4a86c360f5a3e1a71f201fe3c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab07e6da4a86c360f5a3e1a71f201fe3c">◆ </a></span>getDescription()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::getDescription </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the argument description. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00545">545</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00103">_description</a>, <a class="el" href="Arg_8h_source.html#l00108">_required</a>, and <a class="el" href="Arg_8h_source.html#l00114">_requireLabel</a>.</p>
<p class="reference">Referenced by <a class="el" href="UnlabeledMultiArg_8h_source.html#l00288">TCLAP::UnlabeledMultiArg< T >::operator==()</a>, <a class="el" href="UnlabeledValueArg_8h_source.html#l00328">TCLAP::UnlabeledValueArg< T >::operator==()</a>, and <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>.</p>
</div>
</div>
<a id="a69b745d672e972c7db437fe0158fa890"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a69b745d672e972c7db437fe0158fa890">◆ </a></span>getFlag()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::string & TCLAP::Arg::getFlag </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the argument flag. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00558">558</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>.</p>
<p class="reference">Referenced by <a class="el" href="ZshCompletionOutput_8h_source.html#l00284">TCLAP::ZshCompletionOutput::getMutexList()</a>, and <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>.</p>
</div>
</div>
<a id="a9bd2bd8e42b75e2a5421dfc143b70bb8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9bd2bd8e42b75e2a5421dfc143b70bb8">◆ </a></span>getName()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::string & TCLAP::Arg::getName </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the argument name. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00560">560</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00098">_name</a>.</p>
<p class="reference">Referenced by <a class="el" href="ZshCompletionOutput_8h_source.html#l00284">TCLAP::ZshCompletionOutput::getMutexList()</a>, <a class="el" href="UnlabeledMultiArg_8h_source.html#l00288">TCLAP::UnlabeledMultiArg< T >::operator==()</a>, <a class="el" href="UnlabeledValueArg_8h_source.html#l00328">TCLAP::UnlabeledValueArg< T >::operator==()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00170">TCLAP::ZshCompletionOutput::printArg()</a>, and <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>.</p>
</div>
</div>
<a id="a6ce0cbe4effd44679ca11f25e3c318e7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6ce0cbe4effd44679ca11f25e3c318e7">◆ </a></span>ignoreNameString()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const std::string TCLAP::Arg::ignoreNameString </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The name used to identify the ignore rest argument. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00241">241</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>.</p>
</div>
</div>
<a id="a4d412155b8f9b4956e64e91c48e55a3b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4d412155b8f9b4956e64e91c48e55a3b">◆ </a></span>ignoreRest()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static bool TCLAP::Arg::ignoreRest </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether to ignore the rest. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00196">196</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00457">TCLAP::CmdLine::parse()</a>, <a class="el" href="MultiArg_8h_source.html#l00308">TCLAP::MultiArg< T >::processArg()</a>, <a class="el" href="MultiSwitchArg_8h_source.html#l00156">TCLAP::MultiSwitchArg::processArg()</a>, <a class="el" href="SwitchArg_8h_source.html#l00230">TCLAP::SwitchArg::processArg()</a>, and <a class="el" href="ValueArg_8h_source.html#l00335">TCLAP::ValueArg< T >::processArg()</a>.</p>
</div>
</div>
<a id="a4e0a80c4d980d0cc59372382fab03413"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4e0a80c4d980d0cc59372382fab03413">◆ </a></span>isIgnoreable()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::isIgnoreable </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether the argument can be ignored, if desired. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00574">574</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00141">_ignoreable</a>.</p>
</div>
</div>
<a id="aec9381ca612a2d37239944b8dd512a7e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aec9381ca612a2d37239944b8dd512a7e">◆ </a></span>isRequired()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::isRequired </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether the argument is required. </p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1MultiArg.html#a709f7cc102afc916a61a79ab1502c423">TCLAP::MultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00562">562</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00108">_required</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00431">TCLAP::CmdLine::add()</a>, <a class="el" href="XorHandler_8h_source.html#l00102">TCLAP::XorHandler::check()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00170">TCLAP::ZshCompletionOutput::printArg()</a>, and <a class="el" href="DocBookOutput_8h_source.html#l00214">TCLAP::DocBookOutput::printShortArg()</a>.</p>
</div>
</div>
<a id="a15d126427847cc782cf53ab7364659df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a15d126427847cc782cf53ab7364659df">◆ </a></span>isSet()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::isSet </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether the argument has already been set. </p>
<p>Only true if the arg has been matched on the command line. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00566">566</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00128">_alreadySet</a>, and <a class="el" href="Arg_8h_source.html#l00147">_xorSet</a>.</p>
<p class="reference">Referenced by <a class="el" href="XorHandler_8h_source.html#l00102">TCLAP::XorHandler::check()</a>.</p>
</div>
</div>
<a id="a7bdc92de1b8628a02a56be067ca37468"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7bdc92de1b8628a02a56be067ca37468">◆ </a></span>isValueRequired()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::isValueRequired </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether a value must be specified for argument. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00564">564</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00121">_valueRequired</a>.</p>
<p class="reference">Referenced by <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>.</p>
</div>
</div>
<a id="a1a71b113dfa30f35551cc5b71f6389e2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1a71b113dfa30f35551cc5b71f6389e2">◆ </a></span>longID()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::longID </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>valueId</em> = <code>"val"</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a long ID for the usage. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">valueId</td><td>- The value used in the id. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1ValueArg.html#a0e0b127b19efaef3c6c8dfbb9aba17bf">TCLAP::ValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html#a32e4a226cbcccc28f7d6b0a571957c9e">TCLAP::UnlabeledValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a81babdb1b8710712e804f288a261b2a3">TCLAP::UnlabeledMultiArg< T ></a>, <a class="el" href="classTCLAP_1_1MultiArg.html#af2afdcc8c926cfd16b60120a1beb2406">TCLAP::MultiArg< T ></a>, and <a class="el" href="classTCLAP_1_1MultiSwitchArg.html#a7a98d4af63c81da894d171bc6c8e5530">TCLAP::MultiSwitchArg</a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00514">514</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, <a class="el" href="Arg_8h_source.html#l00098">_name</a>, <a class="el" href="Arg_8h_source.html#l00121">_valueRequired</a>, <a class="el" href="Arg_8h_source.html#l00202">delimiter()</a>, <a class="el" href="Arg_8h_source.html#l00227">flagStartString()</a>, and <a class="el" href="Arg_8h_source.html#l00236">nameStartString()</a>.</p>
<p class="reference">Referenced by <a class="el" href="CmdLine_8h_source.html#l00431">TCLAP::CmdLine::add()</a>, <a class="el" href="MultiSwitchArg_8h_source.html#l00200">TCLAP::MultiSwitchArg::longID()</a>, <a class="el" href="MultiArg_8h_source.html#l00372">TCLAP::MultiArg< T >::longID()</a>, and <a class="el" href="ValueArg_8h_source.html#l00398">TCLAP::ValueArg< T >::longID()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_a1a71b113dfa30f35551cc5b71f6389e2_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_a1a71b113dfa30f35551cc5b71f6389e2_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_a1a71b113dfa30f35551cc5b71f6389e2_cgraph" id="aclassTCLAP_1_1Arg_a1a71b113dfa30f35551cc5b71f6389e2_cgraph">
<area shape="rect" title="Returns a long ID for the usage." alt="" coords="5,56,144,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="214,5,365,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="197,56,381,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="192,107,387,133"/>
</map>
</div>
</div>
</div>
<a id="a1df2134870528b80f9f35347fef6fd14"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1df2134870528b80f9f35347fef6fd14">◆ </a></span>nameStartString()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static const std::string TCLAP::Arg::nameStartString </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00236">236</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00234">TCLAP_NAMESTARTSTRING</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>, <a class="el" href="Arg_8h_source.html#l00581">argMatches()</a>, <a class="el" href="SwitchArg_8h_source.html#l00176">TCLAP::SwitchArg::combinedSwitchesMatch()</a>, <a class="el" href="StdOutput_8h_source.html#l00132">TCLAP::StdOutput::failure()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00284">TCLAP::ZshCompletionOutput::getMutexList()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>, <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>, and <a class="el" href="Arg_8h_source.html#l00590">toString()</a>.</p>
</div>
</div>
<a id="af860e26469b06349e331b308685c5d74"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af860e26469b06349e331b308685c5d74">◆ </a></span>operator==()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::operator== </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classTCLAP_1_1Arg.html">Arg</a> & </td>
<td class="paramname"><em>a</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Operator ==. </p>
<p>Equality operator. Must be virtual to handle unlabeled args. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">a</td><td>- The <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> to be compared to this. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html#afabf878693f2151f90aaacbee3a410b0">TCLAP::UnlabeledValueArg< T ></a>, and <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a97fec19fc3942f3cdd83000959ce24ad">TCLAP::UnlabeledMultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00537">537</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, and <a class="el" href="Arg_8h_source.html#l00098">_name</a>.</p>
</div>
</div>
<a id="a61ffe2f660a76111d256f7b22a686146"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a61ffe2f660a76111d256f7b22a686146">◆ </a></span>processArg()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool TCLAP::Arg::processArg </td>
<td>(</td>
<td class="paramtype">int * </td>
<td class="paramname"><em>i</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">std::vector< std::string > & </td>
<td class="paramname"><em>args</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Pure virtual method meant to handle the parsing and value assignment of the string on the command line. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">i</td><td>- Pointer the the current argument in the list. </td></tr>
<tr><td class="paramname">args</td><td>- Mutable list of strings. What is passed in from main. </td></tr>
</table>
</dd>
</dl>
<p>Implemented in <a class="el" href="classTCLAP_1_1ValueArg.html#a71e6ee7c7324724b6fc067c5ffe31160">TCLAP::ValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html#ad853d7950a659b0d4ee2cda3f61261fd">TCLAP::UnlabeledValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#aa5a35665519518dcb60e53d3a4858802">TCLAP::UnlabeledMultiArg< T ></a>, <a class="el" href="classTCLAP_1_1SwitchArg.html#a624f98df6c4907efec95ffc353e9d08c">TCLAP::SwitchArg</a>, <a class="el" href="classTCLAP_1_1MultiSwitchArg.html#a91c3d349570f21d8af6dc90767d747a2">TCLAP::MultiSwitchArg</a>, and <a class="el" href="classTCLAP_1_1MultiArg.html#a344d3cf2128c510f92825e421ea667c7">TCLAP::MultiArg< T ></a>.</p>
</div>
</div>
<a id="ab5b5dc9a9b0381561f0684523f943a2c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab5b5dc9a9b0381561f0684523f943a2c">◆ </a></span>reset()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::reset </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Clears the <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> object and allows it to be reused by new command lines. </p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1ValueArg.html#a1bc480b71c4d8ac3646e796af8fb6e14">TCLAP::ValueArg< T ></a>, <a class="el" href="classTCLAP_1_1SwitchArg.html#af8561d903ec3c11f5f2175e6db179d9c">TCLAP::SwitchArg</a>, <a class="el" href="classTCLAP_1_1MultiSwitchArg.html#ac320530811dbca7fdcb2a41ab252fce4">TCLAP::MultiSwitchArg</a>, and <a class="el" href="classTCLAP_1_1MultiArg.html#ab21f01f22978a1c0eea716399e9ff89b">TCLAP::MultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00670">670</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00128">_alreadySet</a>, and <a class="el" href="Arg_8h_source.html#l00147">_xorSet</a>.</p>
<p class="reference">Referenced by <a class="el" href="MultiArg_8h_source.html#l00425">TCLAP::MultiArg< T >::reset()</a>, <a class="el" href="SwitchArg_8h_source.html#l00262">TCLAP::SwitchArg::reset()</a>, and <a class="el" href="ValueArg_8h_source.html#l00422">TCLAP::ValueArg< T >::reset()</a>.</p>
</div>
</div>
<a id="ad059b63424001b9aedb4c019e2854c3c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad059b63424001b9aedb4c019e2854c3c">◆ </a></span>setDelimiter()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void TCLAP::Arg::setDelimiter </td>
<td>(</td>
<td class="paramtype">char </td>
<td class="paramname"><em>c</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the delimiter for all arguments. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">c</td><td>- The character that delimits flags/names from values. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00247">247</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
</div>
</div>
<a id="aae5c959f31af1a484a8af06f84a6e8b0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aae5c959f31af1a484a8af06f84a6e8b0">◆ </a></span>setRequireLabel()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::setRequireLabel </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>s</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the requireLabel. </p>
<p>Used by <a class="el" href="classTCLAP_1_1XorHandler.html" title="This class handles lists of Arg's that are to be XOR'd on the command line.">XorHandler</a>. You shouldn't ever use this. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">s</td><td>- Set the requireLabel to this value. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00576">576</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00114">_requireLabel</a>.</p>
</div>
</div>
<a id="af130aaa674c3531a7cea7efe31afa5df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af130aaa674c3531a7cea7efe31afa5df">◆ </a></span>shortID()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::shortID </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>valueId</em> = <code>"val"</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a short ID for the usage. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">valueId</td><td>- The value used in the id. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1ValueArg.html#afbc081e294f3600c652bf243c5ef3a1c">TCLAP::ValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledValueArg.html#a444788470cf4883db0ce3f4054b39c6a">TCLAP::UnlabeledValueArg< T ></a>, <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a520265204d6d7ed40ab4df29e69cb27d">TCLAP::UnlabeledMultiArg< T ></a>, <a class="el" href="classTCLAP_1_1MultiArg.html#ad4a0495acbde4b487e97bcf75688cd25">TCLAP::MultiArg< T ></a>, and <a class="el" href="classTCLAP_1_1MultiSwitchArg.html#a6e6bcd90fbe8c25ed74c9207d423e9d9">TCLAP::MultiSwitchArg</a>.</p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00496">496</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, <a class="el" href="Arg_8h_source.html#l00098">_name</a>, <a class="el" href="Arg_8h_source.html#l00108">_required</a>, <a class="el" href="Arg_8h_source.html#l00121">_valueRequired</a>, <a class="el" href="Arg_8h_source.html#l00202">delimiter()</a>, <a class="el" href="Arg_8h_source.html#l00227">flagStartString()</a>, and <a class="el" href="Arg_8h_source.html#l00236">nameStartString()</a>.</p>
<p class="reference">Referenced by <a class="el" href="ZshCompletionOutput_8h_source.html#l00196">TCLAP::ZshCompletionOutput::printOption()</a>, <a class="el" href="DocBookOutput_8h_source.html#l00214">TCLAP::DocBookOutput::printShortArg()</a>, <a class="el" href="MultiSwitchArg_8h_source.html#l00194">TCLAP::MultiSwitchArg::shortID()</a>, <a class="el" href="MultiArg_8h_source.html#l00362">TCLAP::MultiArg< T >::shortID()</a>, and <a class="el" href="ValueArg_8h_source.html#l00388">TCLAP::ValueArg< T >::shortID()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_af130aaa674c3531a7cea7efe31afa5df_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_af130aaa674c3531a7cea7efe31afa5df_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_af130aaa674c3531a7cea7efe31afa5df_cgraph" id="aclassTCLAP_1_1Arg_af130aaa674c3531a7cea7efe31afa5df_cgraph">
<area shape="rect" title="Returns a short ID for the usage." alt="" coords="5,56,149,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="219,5,370,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="203,56,387,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="197,107,392,133"/>
</map>
</div>
</div>
</div>
<a id="adf04c48b5e718098b0b8d9bcb28eb706"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adf04c48b5e718098b0b8d9bcb28eb706">◆ </a></span>toString()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::toString </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns a simple string representation of the argument. </p>
<p>Primarily for debugging. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00590">590</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00089">_flag</a>, <a class="el" href="Arg_8h_source.html#l00098">_name</a>, <a class="el" href="Arg_8h_source.html#l00227">flagStartString()</a>, and <a class="el" href="Arg_8h_source.html#l00236">nameStartString()</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>, <a class="el" href="SwitchArg_8h_source.html#l00230">TCLAP::SwitchArg::processArg()</a>, <a class="el" href="UnlabeledMultiArg_8h_source.html#l00190">TCLAP::UnlabeledMultiArg< T >::UnlabeledMultiArg()</a>, and <a class="el" href="UnlabeledValueArg_8h_source.html#l00216">TCLAP::UnlabeledValueArg< T >::UnlabeledValueArg()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_adf04c48b5e718098b0b8d9bcb28eb706_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_adf04c48b5e718098b0b8d9bcb28eb706_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_adf04c48b5e718098b0b8d9bcb28eb706_cgraph" id="aclassTCLAP_1_1Arg_adf04c48b5e718098b0b8d9bcb28eb706_cgraph">
<area shape="rect" title="Returns a simple string representation of the argument." alt="" coords="5,31,152,57"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="205,5,389,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="200,56,395,83"/>
</map>
</div>
</div>
</div>
<a id="ad873684d1e1eaff4570e9066b14ba325"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad873684d1e1eaff4570e9066b14ba325">◆ </a></span>trimFlag()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::trimFlag </td>
<td>(</td>
<td class="paramtype">std::string & </td>
<td class="paramname"><em>flag</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">std::string & </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Trims a value off of the flag. </p>
<p>Implementation of trimFlag.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The string from which the flag and value will be trimmed. Contains the flag once the value has been trimmed. </td></tr>
<tr><td class="paramname">value</td><td>- Where the value trimmed from the string will be stored. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00611">611</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00202">delimiter()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1Arg_ad873684d1e1eaff4570e9066b14ba325_cgraph.png" border="0" usemap="#aclassTCLAP_1_1Arg_ad873684d1e1eaff4570e9066b14ba325_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1Arg_ad873684d1e1eaff4570e9066b14ba325_cgraph" id="aclassTCLAP_1_1Arg_ad873684d1e1eaff4570e9066b14ba325_cgraph">
<area shape="rect" title="Trims a value off of the flag." alt="" coords="5,5,153,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="201,5,352,32"/>
</map>
</div>
</div>
</div>
<a id="aec525c8092e56f7f5aa455e71bc72374"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aec525c8092e56f7f5aa455e71bc72374">◆ </a></span>xorSet()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void TCLAP::Arg::xorSet </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the _alreadySet value to true. </p>
<p>This is used by the <a class="el" href="classTCLAP_1_1XorHandler.html" title="This class handles lists of Arg's that are to be XOR'd on the command line.">XorHandler</a>. You really have no reason to ever use it. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00646">646</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00128">_alreadySet</a>, and <a class="el" href="Arg_8h_source.html#l00147">_xorSet</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a id="a13130a9a5d22c57a6d42a8883c9b1e0f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a13130a9a5d22c57a6d42a8883c9b1e0f">◆ </a></span>_acceptsMultipleValues</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_acceptsMultipleValues</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00149">149</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00665">acceptsMultipleValues()</a>, and <a class="el" href="MultiArg_8h_source.html#l00237">TCLAP::MultiArg< T >::MultiArg()</a>.</p>
</div>
</div>
<a id="a829e32129857d2683e5791a5df1208ec"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a829e32129857d2683e5791a5df1208ec">◆ </a></span>_alreadySet</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_alreadySet</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether the argument has been set. </p>
<p>Indicates that a value on the command line has matched the name/flag of this argument and the values have been set accordingly. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00128">128</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00566">isSet()</a>, <a class="el" href="MultiSwitchArg_8h_source.html#l00156">TCLAP::MultiSwitchArg::processArg()</a>, <a class="el" href="Arg_8h_source.html#l00670">reset()</a>, and <a class="el" href="Arg_8h_source.html#l00646">xorSet()</a>.</p>
</div>
</div>
<a id="a9882fe256eaab01ac53db54ac657d272"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9882fe256eaab01ac53db54ac657d272">◆ </a></span>_description</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::_description</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Description of the argument. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00103">103</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00545">getDescription()</a>.</p>
</div>
</div>
<a id="ae68407a0a8223023ad0ae3b9dc7986f5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae68407a0a8223023ad0ae3b9dc7986f5">◆ </a></span>_flag</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::_flag</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The single char flag used to identify the argument. </p>
<p>This value (preceded by a dash {-}), can be used to identify an argument on the command line. The _flag can be blank, in fact this is how unlabeled args work. Unlabeled args must override appropriate functions to get correct handling. Note that the _flag does NOT include the dash as part of the flag. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00089">89</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>, <a class="el" href="Arg_8h_source.html#l00581">argMatches()</a>, <a class="el" href="SwitchArg_8h_source.html#l00176">TCLAP::SwitchArg::combinedSwitchesMatch()</a>, <a class="el" href="Arg_8h_source.html#l00558">getFlag()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, <a class="el" href="Arg_8h_source.html#l00537">operator==()</a>, <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>, and <a class="el" href="Arg_8h_source.html#l00590">toString()</a>.</p>
</div>
</div>
<a id="a9832bb7564f4ab472bd51b7b1bbc683f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9832bb7564f4ab472bd51b7b1bbc683f">◆ </a></span>_ignoreable</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_ignoreable</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this argument can be ignored, if desired. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00141">141</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00574">isIgnoreable()</a>, <a class="el" href="MultiSwitchArg_8h_source.html#l00156">TCLAP::MultiSwitchArg::processArg()</a>, <a class="el" href="SwitchArg_8h_source.html#l00230">TCLAP::SwitchArg::processArg()</a>, <a class="el" href="UnlabeledMultiArg_8h_source.html#l00190">TCLAP::UnlabeledMultiArg< T >::UnlabeledMultiArg()</a>, and <a class="el" href="UnlabeledValueArg_8h_source.html#l00216">TCLAP::UnlabeledValueArg< T >::UnlabeledValueArg()</a>.</p>
</div>
</div>
<a id="ac0f138057a99fb5d94ff4acb41a083aa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac0f138057a99fb5d94ff4acb41a083aa">◆ </a></span>_name</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::_name</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A single word namd identifying the argument. </p>
<p>This value (preceded by two dashed {–}) can also be used to identify an argument on the command line. Note that the _name does NOT include the two dashes as part of the _name. The _name cannot be blank. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00098">98</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00453">Arg()</a>, <a class="el" href="Arg_8h_source.html#l00581">argMatches()</a>, <a class="el" href="Arg_8h_source.html#l00560">getName()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, <a class="el" href="Arg_8h_source.html#l00537">operator==()</a>, <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>, and <a class="el" href="Arg_8h_source.html#l00590">toString()</a>.</p>
</div>
</div>
<a id="ad16408bd1ca4d8b1d14d6c5129545a84"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad16408bd1ca4d8b1d14d6c5129545a84">◆ </a></span>_required</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_required</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicating whether the argument is required. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00108">108</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00641">forceRequired()</a>, <a class="el" href="Arg_8h_source.html#l00545">getDescription()</a>, <a class="el" href="Arg_8h_source.html#l00562">isRequired()</a>, and <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>.</p>
</div>
</div>
<a id="a2ed097a868e34a0c4f6062ead744ac54"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2ed097a868e34a0c4f6062ead744ac54">◆ </a></span>_requireLabel</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string TCLAP::Arg::_requireLabel</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Label to be used in usage description. </p>
<p>Normally set to "required", but can be changed when necessary. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00114">114</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00545">getDescription()</a>, and <a class="el" href="Arg_8h_source.html#l00576">setRequireLabel()</a>.</p>
</div>
</div>
<a id="a776682b7e19f4dc231bbad3d10034dfa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a776682b7e19f4dc231bbad3d10034dfa">◆ </a></span>_valueRequired</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_valueRequired</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates whether a value is required for the argument. </p>
<p>Note that the value may be required but the argument/value combination may not be, as specified by _required. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00121">121</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00564">isValueRequired()</a>, <a class="el" href="Arg_8h_source.html#l00514">longID()</a>, and <a class="el" href="Arg_8h_source.html#l00496">shortID()</a>.</p>
</div>
</div>
<a id="aa9ff037e92c9fa5bd85e532f61899300"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa9ff037e92c9fa5bd85e532f61899300">◆ </a></span>_visitor</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a>* TCLAP::Arg::_visitor</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A pointer to a visitor object. </p>
<p>The visitor allows special handling to occur as soon as the argument is matched. This defaults to NULL and should not be used unless absolutely necessary. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00136">136</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00602">_checkWithVisitor()</a>.</p>
</div>
</div>
<a id="ab413bd1d8a7ecf3c89672ee23ef791ba"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab413bd1d8a7ecf3c89672ee23ef791ba">◆ </a></span>_xorSet</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool TCLAP::Arg::_xorSet</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Indicates that the arg was set as part of an XOR and not on the command line. </p>
<p class="definition">Definition at line <a class="el" href="Arg_8h_source.html#l00147">147</a> of file <a class="el" href="Arg_8h_source.html">Arg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="Arg_8h_source.html#l00566">isSet()</a>, <a class="el" href="Arg_8h_source.html#l00670">reset()</a>, and <a class="el" href="Arg_8h_source.html#l00646">xorSet()</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="Arg_8h_source.html">Arg.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
</small></address>
</body>
</html>
|