| 1281 | } |
| 1282 | |
| 1283 | bool 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 | |
| 1298 | void gsoner::parse_code(void) |
| 1299 | { |
no test coverage detected