From 5dae8f8d10d506abc3c75a1f66c1dfe620c84fc1 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 15 Feb 2022 20:27:51 +0100 Subject: refactor: improve project design --- src/stack.tpp | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 src/stack.tpp (limited to 'src/stack.tpp') diff --git a/src/stack.tpp b/src/stack.tpp deleted file mode 100644 index b555a49..0000000 --- a/src/stack.tpp +++ /dev/null @@ -1,42 +0,0 @@ -#include "stack.hpp" -#include -#include - -template -Stack::Stack(unsigned long capacity) -{ - _items.reserve(capacity); -} - -template -void Stack::push(Item item) -{ - if (_items.size() == _items.capacity()) - { - throw std::overflow_error("Tried to push when stack is full"); - } - - _items.push_back(item); -} - -template -void Stack::pop() -{ - if (_items.size() == 0) - { - throw std::underflow_error("Tried to pop when stack size is 0"); - } - - _items.pop_back(); -} - -template -Item Stack::peek() -{ - if (_items.size() == 0) - { - throw std::underflow_error("Tried to peek when stack size is 0"); - } - - return _items.back(); -} -- cgit v1.2.3-18-g5258