#include "Queue.cpp" // Retrieve the template class function definitions // (which itself inludes the template class definition in // the Queue.h file.) //----------------------------------------------------------------------------- // Explicitly instantiate the int version of the template Queue // template class Queue; template ostream & operator<<(ostream & stream, const Queue & queue); //----------------------------------------------------------------------------- // Explicitly instantiate the char version of the template Queue // template class Queue; template ostream & operator<<(ostream & stream, const Queue & queue); //----------------------------------------------------------------------------- // Explicitly instantiate the double version of the template Queue // template class Queue; template ostream & operator<<(ostream & stream, const Queue & queue);