template<class KeyType>class HashTable { typedef int (*HashFunction)(KeyType); HashFunction hash; HashTable(HashFunction _hash);};int my_hf(char *) { return 0;}HashTable<char*> ht(my_hf);