Co-authored-by: Jules Pénuchot <jules@penuchot.com> Co-authored-by: Joel FALCOU <jfalcou@codereckons.com> See merge request oss/rotgen!41
31 lines
949 B
C++
31 lines
949 B
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
|
|
#include <rotgen/config.hpp>
|
|
#include <rotgen/format/dynamic.hpp>
|
|
#include <rotgen/detail/payload.hpp>
|
|
#include <Eigen/Core>
|
|
#include <string>
|
|
|
|
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<payload>(p, f, cs, rsp, rp, rs, mp, ms, fill))
|
|
{
|
|
}
|
|
|
|
ioformat::~ioformat() = default;
|
|
}
|