Hi,

I want to detect the type in a function template, like this:

template <class myType> myType Function (myType a, myType b) {

// Detect the myType
If (myType is int)
{

}
Else
{

}

}

Is that possible?

Thanks

Alan