MCPcopy Create free account
hub / github.com/PDAL/PDAL / Arg

Method Arg

pdal/util/ProgramArgs.hpp:162–166  ·  view source on GitHub ↗

Constructor. \param longname Name of argument specified on command line with "--" prefix. \param shortname Optional name of argument specified on command line with "-" prefix. \param description Argument description. */

Source from the content-addressed store, hash-verified

160 \param description Argument description.
161 */
162 Arg(const std::string& longname, const std::string& shortname,
163 const std::string& description) : m_longname(longname),
164 m_shortname(shortname), m_description(description), m_set(false),
165 m_hidden(false), m_positional(PosType::None)
166 {}
167
168public:
169 virtual ~Arg()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected