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
|
<!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::MultiArg< T > Class Template 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_1MultiArg.html">MultiArg</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="classTCLAP_1_1MultiArg-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">TCLAP::MultiArg< T > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>An argument that allows multiple values of type T to be specified.
<a href="classTCLAP_1_1MultiArg.html#details">More...</a></p>
<p><code>#include <<a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for TCLAP::MultiArg< T >:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg__inherit__graph.png" border="0" usemap="#aTCLAP_1_1MultiArg_3_01T_01_4_inherit__map" alt="Inheritance graph"/></div>
<map name="aTCLAP_1_1MultiArg_3_01T_01_4_inherit__map" id="aTCLAP_1_1MultiArg_3_01T_01_4_inherit__map">
<area shape="rect" title="An argument that allows multiple values of type T to be specified." alt="" coords="34,80,187,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_1Arg.html" title="A virtual base class that defines the essential data for all arguments." alt="" coords="64,5,157,32"/>
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<div class="dynheader">
Collaboration diagram for TCLAP::MultiArg< T >:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg__coll__graph.png" border="0" usemap="#aTCLAP_1_1MultiArg_3_01T_01_4_coll__map" alt="Collaboration graph"/></div>
<map name="aTCLAP_1_1MultiArg_3_01T_01_4_coll__map" id="aTCLAP_1_1MultiArg_3_01T_01_4_coll__map">
<area shape="rect" title="An argument that allows multiple values of type T to be specified." alt="" coords="5,171,159,197"/>
<area shape="rect" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments." alt="" coords="35,95,129,121"/>
<area shape="rect" href="classTCLAP_1_1Visitor.html" title="A base class that defines the interface for visitors." alt="" coords="27,5,137,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-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:adae435f03fdde769bca57327487aab78"><td class="memItemLeft" align="right" valign="top">typedef std::vector< T > </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#adae435f03fdde769bca57327487aab78">container_type</a></td></tr>
<tr class="separator:adae435f03fdde769bca57327487aab78"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34196784baca2bd5aa079d639d49a7ca"><td class="memItemLeft" align="right" valign="top">typedef container_type::iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a34196784baca2bd5aa079d639d49a7ca">iterator</a></td></tr>
<tr class="separator:a34196784baca2bd5aa079d639d49a7ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f8e9e8f5dcc7d3e6a518f42134cf64f"><td class="memItemLeft" align="right" valign="top">typedef container_type::const_iterator </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a></td></tr>
<tr class="separator:a3f8e9e8f5dcc7d3e6a518f42134cf64f"><td class="memSeparator" colspan="2"> </td></tr>
</table><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:a49b5437c7f06cd6864c07dc59814a953"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a49b5437c7f06cd6864c07dc59814a953">MultiArg</a> (const std::string &flag, const std::string &name, const std::string &desc, bool req, const std::string &typeDesc, <a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> *v=NULL)</td></tr>
<tr class="memdesc:a49b5437c7f06cd6864c07dc59814a953"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="classTCLAP_1_1MultiArg.html#a49b5437c7f06cd6864c07dc59814a953">More...</a><br /></td></tr>
<tr class="separator:a49b5437c7f06cd6864c07dc59814a953"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a48c90a873389280f72fb5d6ef707b400"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a48c90a873389280f72fb5d6ef707b400">MultiArg</a> (const std::string &flag, const std::string &name, const std::string &desc, bool req, const std::string &typeDesc, <a class="el" href="classTCLAP_1_1CmdLineInterface.html">CmdLineInterface</a> &parser, <a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> *v=NULL)</td></tr>
<tr class="memdesc:a48c90a873389280f72fb5d6ef707b400"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="classTCLAP_1_1MultiArg.html#a48c90a873389280f72fb5d6ef707b400">More...</a><br /></td></tr>
<tr class="separator:a48c90a873389280f72fb5d6ef707b400"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38b1e32a8189356bd1e5ec7c2d43c1a3"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a38b1e32a8189356bd1e5ec7c2d43c1a3">MultiArg</a> (const std::string &flag, const std::string &name, const std::string &desc, bool req, <a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a>< T > *constraint, <a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> *v=NULL)</td></tr>
<tr class="memdesc:a38b1e32a8189356bd1e5ec7c2d43c1a3"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="classTCLAP_1_1MultiArg.html#a38b1e32a8189356bd1e5ec7c2d43c1a3">More...</a><br /></td></tr>
<tr class="separator:a38b1e32a8189356bd1e5ec7c2d43c1a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4fcd892de2f1ef275c30dc499215208"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#ad4fcd892de2f1ef275c30dc499215208">MultiArg</a> (const std::string &flag, const std::string &name, const std::string &desc, bool req, <a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a>< T > *constraint, <a class="el" href="classTCLAP_1_1CmdLineInterface.html">CmdLineInterface</a> &parser, <a class="el" href="classTCLAP_1_1Visitor.html">Visitor</a> *v=NULL)</td></tr>
<tr class="memdesc:ad4fcd892de2f1ef275c30dc499215208"><td class="mdescLeft"> </td><td class="mdescRight">Constructor. <a href="classTCLAP_1_1MultiArg.html#ad4fcd892de2f1ef275c30dc499215208">More...</a><br /></td></tr>
<tr class="separator:ad4fcd892de2f1ef275c30dc499215208"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a344d3cf2128c510f92825e421ea667c7"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a344d3cf2128c510f92825e421ea667c7">processArg</a> (int *i, std::vector< std::string > &args)</td></tr>
<tr class="memdesc:a344d3cf2128c510f92825e421ea667c7"><td class="mdescLeft"> </td><td class="mdescRight">Handles the processing of the argument. <a href="classTCLAP_1_1MultiArg.html#a344d3cf2128c510f92825e421ea667c7">More...</a><br /></td></tr>
<tr class="separator:a344d3cf2128c510f92825e421ea667c7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a099201e8a8b3da93e24b6a07fa9e23b7"><td class="memItemLeft" align="right" valign="top">const std::vector< T > & </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a099201e8a8b3da93e24b6a07fa9e23b7">getValue</a> () const</td></tr>
<tr class="memdesc:a099201e8a8b3da93e24b6a07fa9e23b7"><td class="mdescLeft"> </td><td class="mdescRight">Returns a vector of type T containing the values parsed from the command line. <a href="classTCLAP_1_1MultiArg.html#a099201e8a8b3da93e24b6a07fa9e23b7">More...</a><br /></td></tr>
<tr class="separator:a099201e8a8b3da93e24b6a07fa9e23b7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9309fbbdf04e379085bf1b64d09a2fcb"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a9309fbbdf04e379085bf1b64d09a2fcb">begin</a> () const</td></tr>
<tr class="memdesc:a9309fbbdf04e379085bf1b64d09a2fcb"><td class="mdescLeft"> </td><td class="mdescRight">Returns an iterator over the values parsed from the command line. <a href="classTCLAP_1_1MultiArg.html#a9309fbbdf04e379085bf1b64d09a2fcb">More...</a><br /></td></tr>
<tr class="separator:a9309fbbdf04e379085bf1b64d09a2fcb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a475371bdbc82e385c0aacd6af32759b0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a475371bdbc82e385c0aacd6af32759b0">end</a> () const</td></tr>
<tr class="memdesc:a475371bdbc82e385c0aacd6af32759b0"><td class="mdescLeft"> </td><td class="mdescRight">Returns the end of the values parsed from the command line. <a href="classTCLAP_1_1MultiArg.html#a475371bdbc82e385c0aacd6af32759b0">More...</a><br /></td></tr>
<tr class="separator:a475371bdbc82e385c0aacd6af32759b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4a0495acbde4b487e97bcf75688cd25"><td class="memItemLeft" align="right" valign="top">virtual std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#ad4a0495acbde4b487e97bcf75688cd25">shortID</a> (const std::string &val="val") const</td></tr>
<tr class="memdesc:ad4a0495acbde4b487e97bcf75688cd25"><td class="mdescLeft"> </td><td class="mdescRight">Returns the a short id string. <a href="classTCLAP_1_1MultiArg.html#ad4a0495acbde4b487e97bcf75688cd25">More...</a><br /></td></tr>
<tr class="separator:ad4a0495acbde4b487e97bcf75688cd25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af2afdcc8c926cfd16b60120a1beb2406"><td class="memItemLeft" align="right" valign="top">virtual std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#af2afdcc8c926cfd16b60120a1beb2406">longID</a> (const std::string &val="val") const</td></tr>
<tr class="memdesc:af2afdcc8c926cfd16b60120a1beb2406"><td class="mdescLeft"> </td><td class="mdescRight">Returns the a long id string. <a href="classTCLAP_1_1MultiArg.html#af2afdcc8c926cfd16b60120a1beb2406">More...</a><br /></td></tr>
<tr class="separator:af2afdcc8c926cfd16b60120a1beb2406"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a709f7cc102afc916a61a79ab1502c423"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a709f7cc102afc916a61a79ab1502c423">isRequired</a> () const</td></tr>
<tr class="memdesc:a709f7cc102afc916a61a79ab1502c423"><td class="mdescLeft"> </td><td class="mdescRight">Once we've matched the first value, then the arg is no longer required. <a href="classTCLAP_1_1MultiArg.html#a709f7cc102afc916a61a79ab1502c423">More...</a><br /></td></tr>
<tr class="separator:a709f7cc102afc916a61a79ab1502c423"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab05097627c81cd65975fa1b99fae9bd0"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#ab05097627c81cd65975fa1b99fae9bd0">allowMore</a> ()</td></tr>
<tr class="memdesc:ab05097627c81cd65975fa1b99fae9bd0"><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_1MultiArg.html#ab05097627c81cd65975fa1b99fae9bd0">More...</a><br /></td></tr>
<tr class="separator:ab05097627c81cd65975fa1b99fae9bd0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab21f01f22978a1c0eea716399e9ff89b"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#ab21f01f22978a1c0eea716399e9ff89b">reset</a> ()</td></tr>
<tr class="memdesc:ab21f01f22978a1c0eea716399e9ff89b"><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_1MultiArg.html#ab21f01f22978a1c0eea716399e9ff89b">More...</a><br /></td></tr>
<tr class="separator:ab21f01f22978a1c0eea716399e9ff89b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classTCLAP_1_1Arg"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classTCLAP_1_1Arg')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classTCLAP_1_1Arg.html">TCLAP::Arg</a></td></tr>
<tr class="memitem:a15734a7cf52c8c4ab6df70f0997bbee3 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="classTCLAP_1_1Arg.html#a15734a7cf52c8c4ab6df70f0997bbee3">More...</a><br /></td></tr>
<tr class="separator:a15734a7cf52c8c4ab6df70f0997bbee3 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99558be2748fa006b8bdf4cdd12534ca inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af860e26469b06349e331b308685c5d74 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="mdescLeft"> </td><td class="mdescRight">Operator ==. <a href="classTCLAP_1_1Arg.html#af860e26469b06349e331b308685c5d74">More...</a><br /></td></tr>
<tr class="separator:af860e26469b06349e331b308685c5d74 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a69b745d672e972c7db437fe0158fa890 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9bd2bd8e42b75e2a5421dfc143b70bb8 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab07e6da4a86c360f5a3e1a71f201fe3c inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a58e3de560f364d0bb6bdf36ab533a6fd inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec525c8092e56f7f5aa455e71bc72374 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7bdc92de1b8628a02a56be067ca37468 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15d126427847cc782cf53ab7364659df inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e0a80c4d980d0cc59372382fab03413 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac7c68cefa82cce90a0e7be0b149c9407 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf04c48b5e718098b0b8d9bcb28eb706 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad873684d1e1eaff4570e9066b14ba325 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f7d53b03703eaec40df9cd8c02d275f inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aae5c959f31af1a484a8af06f84a6e8b0 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad356870538a255d639e26b30330202ae inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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 inherit pub_methods_classTCLAP_1_1Arg"><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:a26cbf5e86ac66d876f9285f1fda22470"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a26cbf5e86ac66d876f9285f1fda22470">_extractValue</a> (const std::string &val)</td></tr>
<tr class="memdesc:a26cbf5e86ac66d876f9285f1fda22470"><td class="mdescLeft"> </td><td class="mdescRight">Extracts the value from the string. <a href="classTCLAP_1_1MultiArg.html#a26cbf5e86ac66d876f9285f1fda22470">More...</a><br /></td></tr>
<tr class="separator:a26cbf5e86ac66d876f9285f1fda22470"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classTCLAP_1_1Arg"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classTCLAP_1_1Arg')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classTCLAP_1_1Arg.html">TCLAP::Arg</a></td></tr>
<tr class="memitem:a0f4cda4e34213da82df040e162287c4b inherit pro_methods_classTCLAP_1_1Arg"><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 inherit pro_methods_classTCLAP_1_1Arg"><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 inherit pro_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab25a06db5edf82a5b965b641b3c63372 inherit pro_methods_classTCLAP_1_1Arg"><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 inherit pro_methods_classTCLAP_1_1Arg"><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 inherit pro_methods_classTCLAP_1_1Arg"><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:aabcab153e09608343713a6ffef431783"><td class="memItemLeft" align="right" valign="top">std::vector< T > </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#aabcab153e09608343713a6ffef431783">_values</a></td></tr>
<tr class="memdesc:aabcab153e09608343713a6ffef431783"><td class="mdescLeft"> </td><td class="mdescRight">The list of values parsed from the <a class="el" href="classTCLAP_1_1CmdLine.html" title="The base class that manages the command line definition and passes along the parsing to the appropria...">CmdLine</a>. <a href="classTCLAP_1_1MultiArg.html#aabcab153e09608343713a6ffef431783">More...</a><br /></td></tr>
<tr class="separator:aabcab153e09608343713a6ffef431783"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f6a2b04fe15d1ede95165fc6e1949e8"><td class="memItemLeft" align="right" valign="top">std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a0f6a2b04fe15d1ede95165fc6e1949e8">_typeDesc</a></td></tr>
<tr class="memdesc:a0f6a2b04fe15d1ede95165fc6e1949e8"><td class="mdescLeft"> </td><td class="mdescRight">The description of type T to be used in the usage. <a href="classTCLAP_1_1MultiArg.html#a0f6a2b04fe15d1ede95165fc6e1949e8">More...</a><br /></td></tr>
<tr class="separator:a0f6a2b04fe15d1ede95165fc6e1949e8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc754048b66bc3a251268947273ea906"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a>< T > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#afc754048b66bc3a251268947273ea906">_constraint</a></td></tr>
<tr class="memdesc:afc754048b66bc3a251268947273ea906"><td class="mdescLeft"> </td><td class="mdescRight">A list of constraint on this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a>. <a href="classTCLAP_1_1MultiArg.html#afc754048b66bc3a251268947273ea906">More...</a><br /></td></tr>
<tr class="separator:afc754048b66bc3a251268947273ea906"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a93a3ef586f763d46839c0e737689b85f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classTCLAP_1_1MultiArg.html#a93a3ef586f763d46839c0e737689b85f">_allowMore</a></td></tr>
<tr class="memdesc:a93a3ef586f763d46839c0e737689b85f"><td class="mdescLeft"> </td><td class="mdescRight">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> to decide whether to keep parsing for this arg. <a href="classTCLAP_1_1MultiArg.html#a93a3ef586f763d46839c0e737689b85f">More...</a><br /></td></tr>
<tr class="separator:a93a3ef586f763d46839c0e737689b85f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classTCLAP_1_1Arg"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classTCLAP_1_1Arg')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classTCLAP_1_1Arg.html">TCLAP::Arg</a></td></tr>
<tr class="memitem:ae68407a0a8223023ad0ae3b9dc7986f5 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0f138057a99fb5d94ff4acb41a083aa inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9882fe256eaab01ac53db54ac657d272 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad16408bd1ca4d8b1d14d6c5129545a84 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ed097a868e34a0c4f6062ead744ac54 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a776682b7e19f4dc231bbad3d10034dfa inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a829e32129857d2683e5791a5df1208ec inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9ff037e92c9fa5bd85e532f61899300 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9832bb7564f4ab472bd51b7b1bbc683f inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab413bd1d8a7ecf3c89672ee23ef791ba inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13130a9a5d22c57a6d42a8883c9b1e0f inherit pro_attribs_classTCLAP_1_1Arg"><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 inherit pro_attribs_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_classTCLAP_1_1Arg"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classTCLAP_1_1Arg')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classTCLAP_1_1Arg.html">TCLAP::Arg</a></td></tr>
<tr class="memitem:a24165d31c1ec70777fb201356b6cdf6a inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d412155b8f9b4956e64e91c48e55a3b inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadef6ca7e40f5b3d3fd03186976aea7e inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0abd38f46dbf7d267078134a4817fbb2 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f9f6af439993e9151bd5a6cd2a63dad inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8e739295b0f75028e7bff6d670d97a1 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1df2134870528b80f9f35347fef6fd14 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ce0cbe4effd44679ca11f25e3c318e7 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad059b63424001b9aedb4c019e2854c3c inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><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 inherit pub_static_methods_classTCLAP_1_1Arg"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<class T><br />
class TCLAP::MultiArg< T ></h3>
<p>An argument that allows multiple values of type T to be specified. </p>
<p>Very similar to a <a class="el" href="classTCLAP_1_1ValueArg.html" title="The basic labeled argument that parses a value.">ValueArg</a>, except a vector of values will be returned instead of just one. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00042">42</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a id="a3f8e9e8f5dcc7d3e6a518f42134cf64f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3f8e9e8f5dcc7d3e6a518f42134cf64f">◆ </a></span>const_iterator</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname">typedef container_type::const_iterator <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00047">47</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="adae435f03fdde769bca57327487aab78"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adae435f03fdde769bca57327487aab78">◆ </a></span>container_type</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname">typedef std::vector<T> <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html#adae435f03fdde769bca57327487aab78">container_type</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00045">45</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="a34196784baca2bd5aa079d639d49a7ca"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a34196784baca2bd5aa079d639d49a7ca">◆ </a></span>iterator</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname">typedef container_type::iterator <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html#a34196784baca2bd5aa079d639d49a7ca">iterator</a></td>
</tr>
</table>
</div><div class="memdoc">
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00046">46</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="a49b5437c7f06cd6864c07dc59814a953"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a49b5437c7f06cd6864c07dc59814a953">◆ </a></span>MultiArg() <span class="overload">[1/4]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html">MultiArg</a> </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">const std::string & </td>
<td class="paramname"><em>typeDesc</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>
</div><div class="memdoc">
<p>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The one character flag that identifies this argument on the command line. </td></tr>
<tr><td class="paramname">name</td><td>- A one word name for the argument. Can be used as a long flag on the command line. </td></tr>
<tr><td class="paramname">desc</td><td>- A description of what the argument is for or does. </td></tr>
<tr><td class="paramname">req</td><td>- Whether the argument is required on the command line. </td></tr>
<tr><td class="paramname">typeDesc</td><td>- A short, human readable description of the type that this object expects. This is used in the generation of the USAGE statement. The goal is to be helpful to the end user of the program. </td></tr>
<tr><td class="paramname">v</td><td>- An optional visitor. You probably should not use this unless you have a very good reason. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00237">237</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00149">TCLAP::Arg::_acceptsMultipleValues</a>.</p>
</div>
</div>
<a id="a48c90a873389280f72fb5d6ef707b400"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a48c90a873389280f72fb5d6ef707b400">◆ </a></span>MultiArg() <span class="overload">[2/4]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html">MultiArg</a> </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">const std::string & </td>
<td class="paramname"><em>typeDesc</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classTCLAP_1_1CmdLineInterface.html">CmdLineInterface</a> & </td>
<td class="paramname"><em>parser</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>
</div><div class="memdoc">
<p>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The one character flag that identifies this argument on the command line. </td></tr>
<tr><td class="paramname">name</td><td>- A one word name for the argument. Can be used as a long flag on the command line. </td></tr>
<tr><td class="paramname">desc</td><td>- A description of what the argument is for or does. </td></tr>
<tr><td class="paramname">req</td><td>- Whether the argument is required on the command line. </td></tr>
<tr><td class="paramname">typeDesc</td><td>- A short, human readable description of the type that this object expects. This is used in the generation of the USAGE statement. The goal is to be helpful to the end user of the program. </td></tr>
<tr><td class="paramname">parser</td><td>- A <a class="el" href="classTCLAP_1_1CmdLine.html" title="The base class that manages the command line definition and passes along the parsing to the appropria...">CmdLine</a> parser object to add this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> to </td></tr>
<tr><td class="paramname">v</td><td>- An optional visitor. You probably should not use this unless you have a very good reason. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00253">253</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00149">TCLAP::Arg::_acceptsMultipleValues</a>, and <a class="el" href="classTCLAP_1_1CmdLineInterface.html#a13b29ab754c030185e58f779dc355631">TCLAP::CmdLineInterface::add()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg_a48c90a873389280f72fb5d6ef707b400_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_a48c90a873389280f72fb5d6ef707b400_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_a48c90a873389280f72fb5d6ef707b400_cgraph" id="aclassTCLAP_1_1MultiArg_a48c90a873389280f72fb5d6ef707b400_cgraph">
<area shape="rect" title="Constructor." alt="" coords="5,5,183,32"/>
<area shape="rect" href="classTCLAP_1_1CmdLineInterface.html#a13b29ab754c030185e58f779dc355631" title="Adds an argument to the list of arguments to be parsed." alt="" coords="231,5,436,32"/>
</map>
</div>
</div>
</div>
<a id="a38b1e32a8189356bd1e5ec7c2d43c1a3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a38b1e32a8189356bd1e5ec7c2d43c1a3">◆ </a></span>MultiArg() <span class="overload">[3/4]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html">MultiArg</a> </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"><a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a>< T > * </td>
<td class="paramname"><em>constraint</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>
</div><div class="memdoc">
<p>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The one character flag that identifies this argument on the command line. </td></tr>
<tr><td class="paramname">name</td><td>- A one word name for the argument. Can be used as a long flag on the command line. </td></tr>
<tr><td class="paramname">desc</td><td>- A description of what the argument is for or does. </td></tr>
<tr><td class="paramname">req</td><td>- Whether the argument is required on the command line. </td></tr>
<tr><td class="paramname">constraint</td><td>- A pointer to a <a class="el" href="classTCLAP_1_1Constraint.html" title="The interface that defines the interaction between the Arg and Constraint.">Constraint</a> object used to constrain this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a>. </td></tr>
<tr><td class="paramname">v</td><td>- An optional visitor. You probably should not use this unless you have a very good reason. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00274">274</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00149">TCLAP::Arg::_acceptsMultipleValues</a>.</p>
</div>
</div>
<a id="ad4fcd892de2f1ef275c30dc499215208"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad4fcd892de2f1ef275c30dc499215208">◆ </a></span>MultiArg() <span class="overload">[4/4]</span></h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::<a class="el" href="classTCLAP_1_1MultiArg.html">MultiArg</a> </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"><a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a>< T > * </td>
<td class="paramname"><em>constraint</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classTCLAP_1_1CmdLineInterface.html">CmdLineInterface</a> & </td>
<td class="paramname"><em>parser</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>
</div><div class="memdoc">
<p>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">flag</td><td>- The one character flag that identifies this argument on the command line. </td></tr>
<tr><td class="paramname">name</td><td>- A one word name for the argument. Can be used as a long flag on the command line. </td></tr>
<tr><td class="paramname">desc</td><td>- A description of what the argument is for or does. </td></tr>
<tr><td class="paramname">req</td><td>- Whether the argument is required on the command line. </td></tr>
<tr><td class="paramname">constraint</td><td>- A pointer to a <a class="el" href="classTCLAP_1_1Constraint.html" title="The interface that defines the interaction between the Arg and Constraint.">Constraint</a> object used to constrain this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a>. </td></tr>
<tr><td class="paramname">parser</td><td>- A <a class="el" href="classTCLAP_1_1CmdLine.html" title="The base class that manages the command line definition and passes along the parsing to the appropria...">CmdLine</a> parser object to add this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> to </td></tr>
<tr><td class="paramname">v</td><td>- An optional visitor. You probably should not use this unless you have a very good reason. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00290">290</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00149">TCLAP::Arg::_acceptsMultipleValues</a>, and <a class="el" href="classTCLAP_1_1CmdLineInterface.html#a13b29ab754c030185e58f779dc355631">TCLAP::CmdLineInterface::add()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg_ad4fcd892de2f1ef275c30dc499215208_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_ad4fcd892de2f1ef275c30dc499215208_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_ad4fcd892de2f1ef275c30dc499215208_cgraph" id="aclassTCLAP_1_1MultiArg_ad4fcd892de2f1ef275c30dc499215208_cgraph">
<area shape="rect" title="Constructor." alt="" coords="5,5,183,32"/>
<area shape="rect" href="classTCLAP_1_1CmdLineInterface.html#a13b29ab754c030185e58f779dc355631" title="Adds an argument to the list of arguments to be parsed." alt="" coords="231,5,436,32"/>
</map>
</div>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a26cbf5e86ac66d876f9285f1fda22470"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a26cbf5e86ac66d876f9285f1fda22470">◆ </a></span>_extractValue()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::_extractValue </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>val</em></td><td>)</td>
<td></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>Extracts the value from the string. </p>
<p>Attempts to parse string as type T, if this fails an exception is thrown. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">val</td><td>- The string to be read. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00398">398</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="ArgException_8h_source.html#l00065">TCLAP::ArgException::error()</a>, and <a class="el" href="Arg_8h_source.html#l00406">TCLAP::ExtractValue()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg_a26cbf5e86ac66d876f9285f1fda22470_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_a26cbf5e86ac66d876f9285f1fda22470_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_a26cbf5e86ac66d876f9285f1fda22470_cgraph" id="aclassTCLAP_1_1MultiArg_a26cbf5e86ac66d876f9285f1fda22470_cgraph">
<area shape="rect" title="Extracts the value from the string." alt="" coords="5,35,181,76"/>
<area shape="rect" href="classTCLAP_1_1ArgException.html#ada4c6840a3cd9ab6134cf7108fead7cb" title="Returns the error text." alt="" coords="229,5,380,47"/>
<area shape="rect" href="namespaceTCLAP.html#af5bcb51791e31b88ad7de17b0f238dfb" title=" " alt="" coords="231,71,378,98"/>
</map>
</div>
</div>
</div>
<a id="ab05097627c81cd65975fa1b99fae9bd0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab05097627c81cd65975fa1b99fae9bd0">◆ </a></span>allowMore()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::allowMore</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><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 from <a class="el" href="classTCLAP_1_1Arg.html#a9aef735d37ef95ca1b7dc7a07850b984">TCLAP::Arg</a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00417">417</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="a9309fbbdf04e379085bf1b64d09a2fcb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9309fbbdf04e379085bf1b64d09a2fcb">◆ </a></span>begin()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a> <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::begin </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 an iterator over the values parsed from the command line. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00197">197</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="MultiArg_8h_source.html#l00054">TCLAP::MultiArg< T >::_values</a>.</p>
</div>
</div>
<a id="a475371bdbc82e385c0aacd6af32759b0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a475371bdbc82e385c0aacd6af32759b0">◆ </a></span>end()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1MultiArg.html#a3f8e9e8f5dcc7d3e6a518f42134cf64f">const_iterator</a> <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::end </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 end of the values parsed from the command line. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00203">203</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="MultiArg_8h_source.html#l00054">TCLAP::MultiArg< T >::_values</a>.</p>
</div>
</div>
<a id="a099201e8a8b3da93e24b6a07fa9e23b7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a099201e8a8b3da93e24b6a07fa9e23b7">◆ </a></span>getValue()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const std::vector<T>& <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::getValue </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 a vector of type T containing the values parsed from the command line. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00191">191</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="MultiArg_8h_source.html#l00054">TCLAP::MultiArg< T >::_values</a>.</p>
</div>
</div>
<a id="a709f7cc102afc916a61a79ab1502c423"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a709f7cc102afc916a61a79ab1502c423">◆ </a></span>isRequired()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::isRequired</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Once we've matched the first value, then the arg is no longer required. </p>
<p>Reimplemented from <a class="el" href="classTCLAP_1_1Arg.html#aec9381ca612a2d37239944b8dd512a7e">TCLAP::Arg</a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00383">383</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="af2afdcc8c926cfd16b60120a1beb2406"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af2afdcc8c926cfd16b60120a1beb2406">◆ </a></span>longID()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::longID </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>val</em> = <code>"val"</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the a long id string. </p>
<p>Used in the usage. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">val</td><td>- value to be used. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classTCLAP_1_1Arg.html#a1a71b113dfa30f35551cc5b71f6389e2">TCLAP::Arg</a>.</p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a81babdb1b8710712e804f288a261b2a3">TCLAP::UnlabeledMultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00372">372</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00514">TCLAP::Arg::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_1MultiArg_af2afdcc8c926cfd16b60120a1beb2406_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_af2afdcc8c926cfd16b60120a1beb2406_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_af2afdcc8c926cfd16b60120a1beb2406_cgraph" id="aclassTCLAP_1_1MultiArg_af2afdcc8c926cfd16b60120a1beb2406_cgraph">
<area shape="rect" title="Returns the a long id string." alt="" coords="5,56,172,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1a71b113dfa30f35551cc5b71f6389e2" title="Returns a long ID for the usage." alt="" coords="220,56,359,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="429,5,579,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="412,56,596,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="407,107,601,133"/>
</map>
</div>
</div>
</div>
<a id="a344d3cf2128c510f92825e421ea667c7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a344d3cf2128c510f92825e421ea667c7">◆ </a></span>processArg()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Handles the processing of the argument. </p>
<p>This re-implements the <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a> version of this method to set the _value of the argument appropriately. It knows the difference between labeled and unlabeled. </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. Passed from main(). </td></tr>
</table>
</dd>
</dl>
<p>Implements <a class="el" href="classTCLAP_1_1Arg.html#a61ffe2f660a76111d256f7b22a686146">TCLAP::Arg</a>.</p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#aa5a35665519518dcb60e53d3a4858802">TCLAP::UnlabeledMultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00308">308</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00202">TCLAP::Arg::delimiter()</a>, and <a class="el" href="Arg_8h_source.html#l00196">TCLAP::Arg::ignoreRest()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg_a344d3cf2128c510f92825e421ea667c7_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_a344d3cf2128c510f92825e421ea667c7_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_a344d3cf2128c510f92825e421ea667c7_cgraph" id="aclassTCLAP_1_1MultiArg_a344d3cf2128c510f92825e421ea667c7_cgraph">
<area shape="rect" title="Handles the processing of the argument." alt="" coords="5,31,200,57"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="255,5,405,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a4d412155b8f9b4956e64e91c48e55a3b" title="Whether to ignore the rest." alt="" coords="248,56,412,83"/>
</map>
</div>
</div>
</div>
<a id="ab21f01f22978a1c0eea716399e9ff89b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab21f01f22978a1c0eea716399e9ff89b">◆ </a></span>reset()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::reset</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><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 from <a class="el" href="classTCLAP_1_1Arg.html#ab5b5dc9a9b0381561f0684523f943a2c">TCLAP::Arg</a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00425">425</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00670">TCLAP::Arg::reset()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classTCLAP_1_1MultiArg_ab21f01f22978a1c0eea716399e9ff89b_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_ab21f01f22978a1c0eea716399e9ff89b_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_ab21f01f22978a1c0eea716399e9ff89b_cgraph" id="aclassTCLAP_1_1MultiArg_ab21f01f22978a1c0eea716399e9ff89b_cgraph">
<area shape="rect" title="Clears the Arg object and allows it to be reused by new command lines." alt="" coords="5,5,164,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#ab5b5dc9a9b0381561f0684523f943a2c" title="Clears the Arg object and allows it to be reused by new command lines." alt="" coords="212,5,343,32"/>
</map>
</div>
</div>
</div>
<a id="ad4a0495acbde4b487e97bcf75688cd25"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad4a0495acbde4b487e97bcf75688cd25">◆ </a></span>shortID()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::shortID </td>
<td>(</td>
<td class="paramtype">const std::string & </td>
<td class="paramname"><em>val</em> = <code>"val"</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the a short id string. </p>
<p>Used in the usage. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">val</td><td>- value to be used. </td></tr>
</table>
</dd>
</dl>
<p>Reimplemented from <a class="el" href="classTCLAP_1_1Arg.html#af130aaa674c3531a7cea7efe31afa5df">TCLAP::Arg</a>.</p>
<p>Reimplemented in <a class="el" href="classTCLAP_1_1UnlabeledMultiArg.html#a520265204d6d7ed40ab4df29e69cb27d">TCLAP::UnlabeledMultiArg< T ></a>.</p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00362">362</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">References <a class="el" href="Arg_8h_source.html#l00496">TCLAP::Arg::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_1MultiArg_ad4a0495acbde4b487e97bcf75688cd25_cgraph.png" border="0" usemap="#aclassTCLAP_1_1MultiArg_ad4a0495acbde4b487e97bcf75688cd25_cgraph" alt=""/></div>
<map name="aclassTCLAP_1_1MultiArg_ad4a0495acbde4b487e97bcf75688cd25_cgraph" id="aclassTCLAP_1_1MultiArg_ad4a0495acbde4b487e97bcf75688cd25_cgraph">
<area shape="rect" title="Returns the a short id string." alt="" coords="5,56,177,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af130aaa674c3531a7cea7efe31afa5df" title="Returns a short ID for the usage." alt="" coords="225,56,369,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#aadef6ca7e40f5b3d3fd03186976aea7e" title="The delimiter that separates an argument flag/name from the value." alt="" coords="439,5,590,32"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#af8e739295b0f75028e7bff6d670d97a1" title=" " alt="" coords="423,56,607,83"/>
<area shape="rect" href="classTCLAP_1_1Arg.html#a1df2134870528b80f9f35347fef6fd14" title=" " alt="" coords="417,107,612,133"/>
</map>
</div>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a id="a93a3ef586f763d46839c0e737689b85f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a93a3ef586f763d46839c0e737689b85f">◆ </a></span>_allowMore</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::_allowMore</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>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> to decide whether to keep parsing for this arg. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00077">77</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="afc754048b66bc3a251268947273ea906"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afc754048b66bc3a251268947273ea906">◆ </a></span>_constraint</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classTCLAP_1_1Constraint.html">Constraint</a><T>* <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::_constraint</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 list of constraint on this <a class="el" href="classTCLAP_1_1Arg.html" title="A virtual base class that defines the essential data for all arguments.">Arg</a>. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00064">64</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="a0f6a2b04fe15d1ede95165fc6e1949e8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0f6a2b04fe15d1ede95165fc6e1949e8">◆ </a></span>_typeDesc</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::string <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::_typeDesc</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 description of type T to be used in the usage. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00059">59</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
</div>
</div>
<a id="aabcab153e09608343713a6ffef431783"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aabcab153e09608343713a6ffef431783">◆ </a></span>_values</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class T > </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">std::vector<T> <a class="el" href="classTCLAP_1_1MultiArg.html">TCLAP::MultiArg</a>< T >::_values</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 list of values parsed from the <a class="el" href="classTCLAP_1_1CmdLine.html" title="The base class that manages the command line definition and passes along the parsing to the appropria...">CmdLine</a>. </p>
<p class="definition">Definition at line <a class="el" href="MultiArg_8h_source.html#l00054">54</a> of file <a class="el" href="MultiArg_8h_source.html">MultiArg.h</a>.</p>
<p class="reference">Referenced by <a class="el" href="MultiArg_8h_source.html#l00197">TCLAP::MultiArg< T >::begin()</a>, <a class="el" href="MultiArg_8h_source.html#l00203">TCLAP::MultiArg< T >::end()</a>, and <a class="el" href="MultiArg_8h_source.html#l00191">TCLAP::MultiArg< T >::getValue()</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="MultiArg_8h_source.html">MultiArg.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>
|