MCPcopy Create free account
hub / github.com/bupticybee/TexasSolver / toFormattedString

Method toFormattedString

src/Card.cpp:224–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224string Card::toFormattedString() {
225 QString qString = QString::fromStdString(this->card);
226 qString = qString.replace("c", "♣️");
227 qString = qString.replace("d", "♦️");
228 qString = qString.replace("h", "♥️");
229 qString = qString.replace("s", "♠️");
230 return qString.toStdString();
231}
232
233QString Card::toFormattedHtml() {
234 QString qString = QString::fromStdString(this->card);

Callers 1

StrategyExplorerMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected