Boost QVM

boost/qvm/deduce_m.hpp

#include <boost/qvm/deduce_m.hpp>

namespace boost
{
    namespace qvm
    {
        template <
            class M,
            int Rows=m_traits<Matrix>::rows,
            int Cols=m_traits<Matrix>::cols>
        struct deduce_m
        {
            typedef /*unspecified*/ type;
        };        
        
        template <class A,class B,int Rows,int Cols>
        struct deduce_m2
        {
            typedef /*unspecified*/ type;
        };
    }
}

See also: deduce_m | deduce_m2