template <class identifier> function_declaration; template <typename identifier> function_declaration; //Example: template <class Type> void Swap( Type &x, Type &y) { Type Temp = x; x = y; y = Temp; }