#include template void RevPrint(NodeType* listPtr) { using namespace std; if (listPtr != NULL) { RevPrint(listPtr->next); cout << listPtr->info << endl; } }