MCPcopy Create free account
hub / github.com/bwapi/bwapi / writeOrderInfo

Function writeOrderInfo

bwapi/DocumentationGen/orders.cpp:3–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include "helpers.h"
2
3void 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}

Callers 1

mainFunction · 0.85

Calls 5

docEnumFunction · 0.85
docBeginFunction · 0.85
iconFunction · 0.85
docIntroFunction · 0.85
docEndFunction · 0.85

Tested by

no test coverage detected