#ifndef _DEFINED_STACK_H_
#define _DEFINED_STACK_H_

//  Represents a generic stack abstract data type
//  A stack can hold up to N objects of type T
template <typename T, int N>
class Stack
{
};

#endif
