| 118 | |
| 119 | std::cout << "Parsed: " << std::endl; |
| 120 | BOOST_FOREACH(client::employee const& e, employees) |
| 121 | { |
| 122 | std::cout << e.forename << ", " << e.surname << ", " << e.salary |
| 123 | << std::endl; |
| 124 | } |
| 125 | } |
| 126 | return 0; |
| 127 | } |
nothing calls this directly
no outgoing calls
no test coverage detected