MCPcopy Create free account
hub / github.com/digego/extempore / File

Method File

include/SimpleOpt.h:505–508  ·  view source on GitHub ↗

! @brief Return the specified file argument. @param n Index of the file to return. This must be between 0 and FileCount() - 1; */

Source from the content-addressed store, hash-verified

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]; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected