Stores the pointer to an argument in the param list and initializes flag options to FALSE. FIXME -- there is no such initialization. Bug?
| 200 | // initializes flag options to FALSE. |
| 201 | // FIXME -- there is no such initialization. Bug? |
| 202 | void |
| 203 | ArgOption::add_parameter (int i, void *p) |
| 204 | { |
| 205 | assert (i >= 0 && i < m_count); |
| 206 | m_param[i] = p; |
| 207 | } |
| 208 | |
| 209 | |
| 210 |