! @brief Return the specified file argument. @param n Index of the file to return. This must be between 0 and FileCount() - 1; */
| 503 | and FileCount() - 1; |
| 504 | */ |
| 505 | inline SOCHAR * File(int n) const { |
| 506 | SO_ASSERT(n >= 0 && n < FileCount()); |
| 507 | return m_argv[m_nLastArg + n]; |
| 508 | } |
| 509 | |
| 510 | /*! @brief Return the array of files. */ |
| 511 | inline SOCHAR ** Files() const { return &m_argv[m_nLastArg]; } |
nothing calls this directly
no outgoing calls
no test coverage detected