| 58 | table_p->Add("LOCATION"); |
| 59 | table_p->EndOfRow(); |
| 60 | return table_p; |
| 61 | } |
| 62 | |
| 63 | up<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 = ("┘"); |