parent
71109fa551
commit
5a6cd4b0f2
18 changed files with 333 additions and 115 deletions
27
src/format.cpp
Normal file
27
src/format.cpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
//==================================================================================================
|
||||
/*
|
||||
ROTGEN - Runtime Overlay for Eigen
|
||||
Copyright : CODE RECKONS
|
||||
SPDX-License-Identifier: BSL-1.0
|
||||
*/
|
||||
//==================================================================================================
|
||||
|
||||
#include <rotgen/config.hpp>
|
||||
#include <rotgen/dynamic/format.hpp>
|
||||
#include <rotgen/impl/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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue