Procházet zdrojové kódy

print results as table

master
aaaaaa aaaaaaa před 6 roky
rodič
revize
1184c88410
1 změnil soubory, kde provedl 8 přidání a 1 odebrání
  1. +8
    -1
      tester/main.cpp

+ 8
- 1
tester/main.cpp Zobrazit soubor

@@ -27,7 +27,14 @@ int main(int argc, char** argv) {
}

SelfTest();
std::cout << *x << std::endl;
x->unhook_all();
}

std::cout << "+----------+-+-+-+-+-+-+-+" << std::endl <<
'|' << std::setw(10) << "Name" << std::setw(1) << "|S|B|R|A|?|L|T|" << std::endl <<
"+----------+-+-+-+-+-+-+-+" << std::endl;
for (auto&& x : engines) {
std::cout << *x << std::endl;
}
std::cout << "+----------+-+-+-+-+-+-+-+" << std::endl;
}

Načítá se…
Zrušit
Uložit