
/**************************************************************************************************/
/*                                                                                                */
/*  Name:  DarC KonQuesT                                                                          */
/*  Program:  #4                                                                                  */
/*  Date:  2005.3.15                                                                              */
/*  Purpose:                                                                                      */
/*      Implementation file for a clone of the STL queue class.  Allows for creation, manipulation*/
/*   and use of queues.                                                                           */
/*                                                                                                */
/*                                                                                                */
/**************************************************************************************************/


#include <iostream>
#include "queue.h"

using namespace std;


queue::queue()
{
  nodeType *head = new nodeType;
  nodeType *tail = new nodeType;
}

Type& queue::back()
{
  return(tail->info);
}

bool queue::empty()
{
}

Type& queue::front()
{
  return(head->info);
}

void queue::pop()
{
}

void queue::push(Type data)
{
}

int queue::size()
{
}


