I have the following class
我有以下课程
template<class TDataType>
void SetProperties(IndexType PropertiesId,
const Variable<TDataType>& rVariable,
const TDataType& Value)
{
mpModeler->SetProperties(PropertiesId, rVariable, Value);
}
template<typename TDataType, std::size_t N>
void SetProperties(IndexType PropertiesId,
const Variable<TDataType>& rVariable,
const TDataType(&Value)[N])
{
mpModeler->SetProperties(PropertiesId, rVariable, Value);
}
templat