tabulate icon indicating copy to clipboard operation
tabulate copied to clipboard

Support C++ Modules

Open kaladron opened this issue 1 month ago • 0 comments

Hi! I wrote a small wrapper for tabulate for C++ Modules that I'd be happy to contribute upstream if you're interested:

module;

#include <tabulate/table.hpp>

export module tabulate;

export namespace tabulate {
using tabulate::Table;
using tabulate::FontAlign;
using tabulate::FontStyle;
}  // namespace tabulate

(used in my code today as: https://raw.githubusercontent.com/kaladron/galactic-bloodshed/refs/heads/main/gb/third_party/tabulate.cppm)

If yes, i'll happily put together the PR that links this into cmake, etc.

kaladron avatar Nov 10 '25 19:11 kaladron