文件名称:ascii-table:一个C ++ 14库,用于创建基于文本的表
文件大小:7KB
文件格式:ZIP
更新时间:2024-03-27 00:44:51
C++
表
一个简单的C ++ 14库,用于创建基于文本的表。 支持由std::string组成的行以及创建自己的行类型的接口。
基本
ascii_table::ColumnInfo col1 ( 20 ); // Minimum width of 20
ascii_table::ColumnInfo col2 ( 20 , ascii_table::alignment::right);
ascii_table::ColumnInfo col3 ( 0 , ascii_table::alignment::center);
std::vector
【文件预览】:
ascii-table-master
----src()
--------Row.h(724B)
--------Table.cpp(2KB)
--------CMakeLists.txt(234B)
--------ColumnInfo.h(475B)
--------Table.h(582B)
--------StringRowBase.h(506B)
--------RowBase.h(211B)
----LICENSE(1KB)
----README.md(3KB)
----tests()
--------CMakeLists.txt(387B)
--------main.cpp(741B)
----.gitignore(297B)