Changeset 17143 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Feb 25, 2009 5:14:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r17141 r17143 62 62 } 63 63 64 /** @todo Add an flag for sorting the arguments so that all the options comes 65 * first. */ 64 66 return VINF_SUCCESS; 65 67 } … … 134 136 pValueUnion->pDef = NULL; 135 137 138 /** @todo Handle '--' (end of options).*/ 139 /** @todo Add a flag to RTGetOptInit for handling the various help options in 140 * a common way. (-?,-h,-help,--help,++) */ 141 /** @todo Add a flag to RTGetOptInit for handling the standard version options 142 * in a common way. (-V,--version) */ 143 136 144 /* 137 145 * The next option. … … 185 193 fShort = false; 186 194 } 187 188 189 /** @todo Handle '--' and possibly implement an RTGetOptInit that lets us190 * optionally sort the stuff and set other policeis sorts the result. */191 /** @todo Implement short form short option like in:192 * ls -latr .193 * tar -xzvf foobar.tar.gz194 */195 195 196 196 if (pOpt)
Note:
See TracChangeset
for help on using the changeset viewer.