From de6e09cefd0730e81a11046afa4e7abee6cb79f4 Mon Sep 17 00:00:00 2001 From: mes5k Date: Fri, 22 Oct 2004 02:01:14 +0000 Subject: [PATCH] minor tweaks --- docs/manual.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/manual.html b/docs/manual.html index cee0af9..29eded4 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -363,7 +363,7 @@ a single value is returned. A MultiArg is declared much like a ValueArg:
 
-                MultiArg <int> itest("i", "intTest", "multi int test", false,"int" );
+                MultiArg<int> itest("i", "intTest", "multi int test", false,"int" );
                 cmd.add( itest );
 
 
@@ -384,7 +384,7 @@ the CmdLine object to treat them accordingly. The code would look like this:
 
-                UnlabeledValueArg <float>  nolabel( "name", "unlabeled test", 3.14,
+                UnlabeledValueArg<float>  nolabel( "name", "unlabeled test", 3.14,
                                                   "nameString"  );
                 cmd.add( nolabel );
 
@@ -432,11 +432,11 @@ CmdLine!. Here is what a declaration looks like:
                 //
                 // UnlabeledMultiArg must be the LAST argument added!
                 //
-                UnlabeledMultiArg <string> multi("file names");
+                UnlabeledMultiArg<string> multi("file names");
                 cmd.add( multi );
                 cmd.parse(argc, argv);
 
-                vector <string>  fileNames = multi.getValue();
+                vector<string>  fileNames = multi.getValue();
 
 
You must only ever specify one (1) UnlabeledMultiArg. One @@ -469,9 +469,9 @@ xorList ) to add more than two Args.
 
 
-        ValueArg <string>  fileArg("f","file","File name to read",true,"homer",
+        ValueArg<string>  fileArg("f","file","File name to read",true,"homer",
                                  "filename");
-        ValueArg <string>  urlArg("u","url","URL to load",true, 
+        ValueArg<string>  urlArg("u","url","URL to load",true, 
                                     "http://example.com", "URL");
 
         cmd.xorAdd( fileArg, urlArg );
@@ -515,7 +515,7 @@ option on the command line. The help output is updated accordingly.
 
 
 
-        ValueArg <string>  fileArg("","file","File name",true,"homer","filename");
+        ValueArg<string>  fileArg("","file","File name",true,"homer","filename");
 
         SwitchArg  caseSwitch("","upperCase","Print in upper case",false);