louis-etne / table

A header only C++ library for drawing command line tables.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table

A header only C++ library for drawing command line tables.

Install

Copy table.hpp into your projects directory.

Usage

#include <iostream>
#include <string>
#include <vector>

#include "table.hpp"


int main() {
    std::vector<std::vector<std::string>> values{{"88", "0x7ffee784e96c", "0x7ffee784e960", "0x7ffee784e96c", "88"},
                                                 {"89", "0x7ffee784e96c", "0x7ffee784e960", "0x7ffee784e96c", "89"}};

    std::vector<std::string> headers{"Value", "Value address", "Pointer address", "Pointer contents", "Dereferenced pointer"};

    LE::Table table{values, headers};

    // table.set_bold_headers(true); Use bold font for the headers.
    // table.set_is_ascii(true);     Use only ASCII symbols.
    // table.set_padding_left(x);    Add x [unsigned] spaces at the left of each value.
    // table.set_padding_right(x);   Add x [unsigned] spaces at the right of each value.

    std::cout << table.set_bold_headers(true).set_padding_right(2);

    return 0;
}

Running it will output:

┌────────┬─────────────────┬──────────────────┬───────────────────┬───────────────────────┐
│ Value  │ Value address   │ Pointer address  │ Pointer contents  │ Dereferenced pointer  │
├────────┼─────────────────┼──────────────────┼───────────────────┼───────────────────────┤
│ 88     │ 0x7ffee784e96c  │ 0x7ffee784e960   │ 0x7ffee784e96c    │ 88                    │
├────────┼─────────────────┼──────────────────┼───────────────────┼───────────────────────┤
│ 89     │ 0x7ffee784e96c  │ 0x7ffee784e960   │ 0x7ffee784e96c    │ 89                    │
└────────┴─────────────────┴──────────────────┴───────────────────┴───────────────────────┘

Example

See the example directory.

Compile and run each example with:

mkdir -p build
cd build
cmake ../
make
./table

About

A header only C++ library for drawing command line tables.

License:MIT License


Languages

Language:C++ 96.1%Language:CMake 3.9%