| 1 | #include "helpers.h" |
| 2 | |
| 3 | void writeOrderInfo() |
| 4 | { |
| 5 | std::ofstream of("orders.dox"); |
| 6 | for (auto t : Orders::allOrders()) |
| 7 | { |
| 8 | if (t == Orders::Unknown || t == Orders::None) continue; |
| 9 | of << docEnum(t); |
| 10 | of << docBegin(t); |
| 11 | |
| 12 | of << icon(t) << " " << docIntro(t) << "\n"; |
| 13 | |
| 14 | of << docEnd(); |
| 15 | } |
| 16 | } |