mirror of
http://172.16.200.102/MOISE/Timed-Altarica-To-Fiacre-Translator.git
synced 2025-11-26 06:37:59 +01:00
Initial commit.
This commit is contained in:
36
sdk/boost/numeric/bindings/glas/detail/convert_to.hpp
Normal file
36
sdk/boost/numeric/bindings/glas/detail/convert_to.hpp
Normal file
@@ -0,0 +1,36 @@
|
||||
//
|
||||
// Copyright (c) 2009 Rutger ter Borg
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//
|
||||
|
||||
#ifndef BOOST_NUMERIC_BINDINGS_GLAS_DETAIL_CONVERT_TO_HPP
|
||||
#define BOOST_NUMERIC_BINDINGS_GLAS_DETAIL_CONVERT_TO_HPP
|
||||
|
||||
#include <boost/numeric/bindings/detail/convert_to.hpp>
|
||||
#include <boost/numeric/bindings/tag.hpp>
|
||||
#include <glas/concept/orientation.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace numeric {
|
||||
namespace bindings {
|
||||
namespace detail {
|
||||
|
||||
template<>
|
||||
struct convert_to< bindings::tag::data_order, glas::row_orientation > {
|
||||
typedef bindings::tag::row_major type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct convert_to< bindings::tag::data_order, glas::column_orientation > {
|
||||
typedef bindings::tag::column_major type;
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace bindings
|
||||
} // namespace numeric
|
||||
} // namespace boost
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user