// Creating a Template Class
// Kathleen Williams
// kwilliam.h
#include <iostream>
#include <algorithm>
using namespace std;

template <class T>

class Stack { 
public:
   Stack() {p = new T[10]; };       // Default constructor
   Stack(const Stack &array);       // Copy constructor
   ~Stack();                        // Destructor

   bool isEmpty() {
   if (p.empty()) 
    return false;
   else
    return true; 
   }

   void push(T const a) {
       if(v.end() == 9) {
        cout << "INCREASING STACK SIZE NOW: " << endl;
       }  
       i = v.end() + 1;
       p[i] = a;
   }

   void pop() {
    for(i=v.begin(); i!=v.end(); ++i) {
     p[i] = p[i+1];
    }
   }

  T top() {
   return &p[0];
  }


private:
   T *p;
};

int main() {

}
