#ifndef _STACK_H_ #define _STACK_H_ #include using namespace std; // Add stack (template) class declaration here /* Templates can not be compiled until the actual template types are * known, thus the implementation must be included whenever used. */ #include "stack.template.cc" #endif