#include "polya.H"

class Queue
{
public:

Queue();

void operator<<(Poly x);

int operator>>(Poly & x);


private:

Polylist oldest, youngest;
};
