File size: 540 Bytes
f80131c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <iostream>
#include <string>
#include <vector>
struct ReviewItem {
std::string owner;
std::string status;
std::string note;
};
int main() {
const std::vector<ReviewItem> items = {
{"Ada", "done", "header checks complete"},
{"Lin", "waiting", "extraction fixture marker: shared code sample"},
{"Sam", "done", "footer totals verified"},
};
for (const auto& item : items) {
std::cout << item.owner << " - " << item.status << ": " << item.note << '\n';
}
return 0;
}
|