can functions be templated cpp code example
Example 1: cpp how to create an object of template class
template class Graph<string>;
Example 2: how to create a c++ templeate
template <class myType>
myType GetMax (myType a, myType b) {
return (a>b?a:b);
}