#ifndef STACK_BOOL_H
#define STACK_BOOL_H
#include <iostream>
template <>
class stack<bool>
{
// egészen más implementáció
// ...
};
template <>
void stack<bool>::copy( const stack &other)
{
v = new T[capacity = other.capacity];
sp = other.sp;
memcpy(v, other.v, sizeof(T)*sp);
}
#endif /* STACK_BOOL_H */