Boost LA

boost/la/deduce_matrix.hpp

#include <boost/la/deduce_matrix.hpp>

#include <boost/la/deduce_scalar.hpp>

namespace
boost
    {
    namespace
    la
        {
        template <
            class Matrix,
            int Rows=matrix_traits<Matrix>::rows,
            int Cols=matrix_traits<Matrix>::cols,
            class Scalar=typename matrix_traits<Matrix>::scalar_type>
        struct
        deduce_matrix
            {
            typedef /*unspecified*/ type;
            };        
        
        template <class A,class B,int Rows,int Cols>
        struct
        deduce_matrix2
            {
            typedef /*unspecified*/ type;
            };
        }
    }