mgcpp
A C++ Math Library Based on CUDA
matrix_base.hpp
Go to the documentation of this file.
1 
2 // Copyright RedPortal, mujjingun 2017 - 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef _MGCPP_MATRIX_MATRIX_BASE_HPP_
8 #define _MGCPP_MATRIX_MATRIX_BASE_HPP_
9 
10 #include <cstddef>
11 
12 namespace mgcpp {
13 template <typename MatrixType, typename Type>
14 struct matrix_base {
15  inline MatrixType const& operator~() const noexcept;
16 
17  inline MatrixType& operator~() noexcept;
18 };
19 } // namespace mgcpp
20 
22 #endif
Definition: adapter_base.hpp:12
MatrixType const & operator~() const noexcept
Definition: matrix_base.hpp:14