MCPcopy Create free account
hub / github.com/cwida/FastLanes / CreateCSV

Method CreateCSV

src/printer/output_factory.cpp:60–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58 table_p->Add("LOCATION");
59 table_p->EndOfRow();
60 return table_p;
61}
62
63up<TerminalOutput> OutputFactory::CreateTerminal() {
64 auto table_p = std::make_unique<TerminalOutput>();
65
66 // table
67 table_p->m_horizontal = ("─");
68 table_p->m_vertical = ("│");
69 table_p->m_top_rgt = ("┐");
70 table_p->m_top_mid = ("┬");
71 table_p->m_top_lft = ("┌");
72 table_p->m_bot_rgt = ("┘");

Callers

nothing calls this directly

Calls 2

EndOfRowMethod · 0.80
AddMethod · 0.45

Tested by

no test coverage detected