Go to the documentation of this file.
15 #ifndef INCLUDE_STACK_H_
16 #define INCLUDE_STACK_H_
18 #include <initializer_list>
28 virtual bool isEmpty()
const = 0;
29 virtual void push(
const T &elem) = 0;
31 virtual T top()
const = 0;
32 virtual ~
Stack() =
default;