27 lines
762 B
C++
27 lines
762 B
C++
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#pragma once
|
|
|
|
#include <rotgen/detail/assert.hpp>
|
|
|
|
#include <rotgen/config.hpp>
|
|
#include <rotgen/container/block.hpp>
|
|
#include <rotgen/container/map.hpp>
|
|
#include <rotgen/format.hpp>
|
|
|
|
#include <iostream>
|
|
#include <type_traits>
|
|
|
|
#if defined(ROTGEN_FORCE_DYNAMIC)
|
|
#include <rotgen/container/ref/dynamic.hpp>
|
|
#else
|
|
#include <rotgen/container/ref/fixed.hpp>
|
|
#endif
|
|
|
|
#include <rotgen/container/ref/functions.hpp>
|
|
#include <rotgen/container/ref/generalize.hpp>
|