#include #include "stack3.h" Stack* createStack() { Stack* s = new Stack; s->init(); return s; }