MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / parse

Method parse

tests/Utils/Options.cpp:123–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121}
122
123void
124Options::parse(int argc, ACE_TCHAR* argv[], const Arguments& args)
125{
126 std::cout << "Options::parse with Arguments\n";
127 define_all_params_ = args.define_all_params();
128 for (Params::const_iterator arg = args.begin();
129 arg != args.end();
130 ++arg) {
131 params_.insert(std::make_pair(arg->first, arg->second));
132 }
133// std::copy(args.begin(), args.end(), params_.begin());
134 parse(argc, argv);
135}
136
137void
138Options::parse(int argc, ACE_TCHAR* argv[])

Callers 3

TESTFunction · 0.45
TEST_FFunction · 0.45
generate_test_resultsFunction · 0.45

Calls 7

define_all_paramsMethod · 0.80
parseFunction · 0.50
ExceptionClass · 0.50
beginMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
emptyMethod · 0.45

Tested by 1

generate_test_resultsFunction · 0.36