MCPcopy Create free account
hub / github.com/acl-dev/acl / read_multi_file

Method read_multi_file

lib_acl_cpp/src/serialize/gsoner.cpp:1283–1296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1281}
1282
1283bool gsoner::read_multi_file(const std::vector<std::string>& files)
1284{
1285 for (std::vector<std::string>::const_iterator itr = files.begin();
1286 itr != files.end(); itr++) {
1287
1288 if (!read_file(itr->c_str())) {
1289 std::cout << "read_file:" \
1290 << itr->c_str() << " error" << std::endl;
1291 return false;
1292 }
1293 }
1294
1295 return true;
1296}
1297
1298void gsoner::parse_code(void)
1299{

Callers 1

create_filesFunction · 0.80

Calls 3

beginMethod · 0.80
endMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected