Changeset 90:2981a73d49a3 in lemon-main
- Timestamp:
- 03/17/08 13:44:13 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/arg_parser.h
r88 r90 128 128 ///\param name The name of the option. The leading '-' must be omitted. 129 129 ///\param help A help string. 130 ///\ retval value The value of the argument will be written to this variable.130 ///\param value A default value for the option 131 131 ///\param obl Indicate if the option is mandatory. 132 132 ArgParser &intOption(const std::string &name, … … 138 138 ///\param name The name of the option. The leading '-' must be omitted. 139 139 ///\param help A help string. 140 ///\ retval value The value of the argument will be written to this variable.140 ///\param value A default value for the option 141 141 ///\param obl Indicate if the option is mandatory. 142 142 ArgParser &doubleOption(const std::string &name, … … 148 148 ///\param name The name of the option. The leading '-' must be omitted. 149 149 ///\param help A help string. 150 ///\ retval value The value of the argument will be written to this variable.150 ///\param value A default value for the option 151 151 ///\param obl Indicate if the option is mandatory. 152 152 ////\note A mandatory bool obtion is of very little use.) … … 159 159 ///\param name The name of the option. The leading '-' must be omitted. 160 160 ///\param help A help string. 161 ///\ retval value The value of the argument will be written to this variable.161 ///\param value A default value for the option 162 162 ///\param obl Indicate if the option is mandatory. 163 163 ArgParser &stringOption(const std::string &name, … … 175 175 ///\param name The name of the option. The leading '-' must be omitted. 176 176 ///\param help A help string. 177 ///\param obl Indicate if the option is mandatory. 177 178 ///\retval ref The value of the argument will be written to this variable. 178 ///\param obl Indicate if the option is mandatory.179 179 ArgParser &refOption(const std::string &name, 180 180 const std::string &help, … … 185 185 ///\param name The name of the option. The leading '-' must be omitted. 186 186 ///\param help A help string. 187 ///\param obl Indicate if the option is mandatory. 187 188 ///\retval ref The value of the argument will be written to this variable. 188 ///\param obl Indicate if the option is mandatory.189 189 ArgParser &refOption(const std::string &name, 190 190 const std::string &help, … … 195 195 ///\param name The name of the option. The leading '-' must be omitted. 196 196 ///\param help A help string. 197 ///\param obl Indicate if the option is mandatory. 197 198 ///\retval ref The value of the argument will be written to this variable. 198 ///\param obl Indicate if the option is mandatory.199 199 ////\note A mandatory bool obtion is of very little use.) 200 200 ArgParser &refOption(const std::string &name,
Note: See TracChangeset
for help on using the changeset viewer.