strinToTypeImpl
あらゆる種類の文字列をテンプレート型に変換する次の単純な関数があります。私が懸念している問題は、コンパイラが の部分的な特殊化について教えてくれるという事実ですtypename MyMatrix<T>::Vector3
。
テンプレート パラメーター T は部分的な特殊化では使用されません
スペシャライゼーションで従属名を使用できませんか?
namespace details
{
template<typename T>
struct stringToTypeImpl{
bool operator()(T& t, const std::string& s)
{
std::istringstream iss(s);
return !(iss >> t).fail();
}
};
template<typename T>
struct stringToTypeImpl< typename MyMatrix<T>::Vector3 >{
// Replacing typename MyMatrix<T>::Vector3 by
// Eigen::Matrix<T,3,1> WORKS but why?
bool operator()(typename MyMatrix<PREC>::Vector3 & t, const std::string& s)
{
stringToVector3<PREC>(t,s);
}
};
}