MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/OpenColorIO / parse_end_args

Function parse_end_args

src/apps/ocioconvert/main.cpp:26–36  ·  view source on GitHub ↗

Fill 'args' array with OpenColorIO arguments.

Source from the content-addressed store, hash-verified

24
25// Fill 'args' array with OpenColorIO arguments.
26static int parse_end_args(int argc, const char *argv[])
27{
28 while (argc>0)
29 {
30 args.push_back(argv[0]);
31 argc--;
32 argv++;
33 }
34
35 return 0;
36}
37
38bool ParseNameValuePair(std::string& name, std::string& value, const std::string& input);
39

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected