I'm writing a Steque class that will inherit from my Stack and Queue classes. When I try to link it, I'm getting this weird error, which I'm sure has something to do with trying to inheritance.
Queue.h
#include <iostream>
#include <cstddef>
#include <stdlib.h>
using namespace std...