c++ template function cpp code example
Example 1: c++ template function
template <class T>
void swap(T & lhs, T & rhs)
{
T tmp = lhs;
lhs = rhs;
rhs = tmp;
}
Example 2: template c++
template <class myType>
myType GetMax (myType a, myType b) {
return (a>b?a:b);
}