1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/valarray/valarray_fwd.hpp
bolero-MURAKAMI 1b8c051008 add valarray
2016-04-03 13:12:14 +09:00

56 lines
1.2 KiB
C++

/*=============================================================================
Copyright (c) 2011-2015 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
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 SPROUT_VALARRAY_VALARRAY_FWD_HPP
#define SPROUT_VALARRAY_VALARRAY_FWD_HPP
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
namespace sprout {
//
// valarray
//
template<typename T, std::size_t N>
class valarray;
//
// slice
//
class slice;
//
// slice_array
//
template<typename T, std::size_t N>
class slice_array;
//
// gslice
//
template<std::size_t N>
class gslice;
//
// gslice_array
//
template<typename T, std::size_t N, std::size_t M>
class gslice_array;
//
// mask_array
//
template<typename T, std::size_t N, std::size_t M>
class mask_array;
//
// indirect_array
//
template<typename T, std::size_t N, std::size_t M>
class indirect_array;
} // namespace sprout
#endif // #ifndef SPROUT_VALARRAY_VALARRAY_FWD_HPP