Shortcut for inserting the currently input file in the indev chain.
| 198 | |
| 199 | // Shortcut for inserting the currently input file in the indev chain. |
| 200 | bool InputDevices::insertIfp() |
| 201 | { |
| 202 | if (insert(NULL, "", "")) |
| 203 | { |
| 204 | m_head->copy_from(&m_ifp); |
| 205 | return true; |
| 206 | } |
| 207 | return false; |
| 208 | } |
| 209 | |
| 210 | // Remove the top (last inserted) indev in the chain. |
| 211 | bool InputDevices::remove() |