MCPcopy Create free account
hub / github.com/PointCloudLibrary/pcl / parse_argument

Method parse_argument

common/src/parse.cpp:71–79  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

69
70////////////////////////////////////////////////////////////////////////////////
71int
72pcl::console::parse_argument (int argc, const char * const * argv, const char * str, std::string &val)
73{
74 int index = find_argument (argc, argv, str) + 1;
75 if (index > 0 && index < argc )
76 val = argv[index];
77
78 return index - 1;
79}
80
81////////////////////////////////////////////////////////////////////////////////
82namespace pcl

Callers

nothing calls this directly

Calls 2

parse_genericFunction · 0.85
parse_argumentFunction · 0.85

Tested by

no test coverage detected