//================================================================================================== /* ROTGEN - Runtime Overlay for Eigen Copyright : CODE RECKONS SPDX-License-Identifier: BSL-1.0 */ //================================================================================================== #include #include #include #include #include namespace rotgen { ioformat::ioformat(int p, int f, std::string const& cs, std::string const& rsp, std::string const& rp, std::string const& rs, std::string const& mp, std::string const& ms, char fill) : storage_(std::make_unique(p, f, cs, rsp, rp, rs, mp, ms, fill)) { } ioformat::~ioformat() = default; }