Go to the documentation of this file.
12 #ifndef __StackIncluded
13 #define __StackIncluded
15 #include <initializer_list>
25 virtual bool isEmpty()
const = 0;
26 virtual void push(
const T &elem) = 0;
28 virtual T top()
const = 0;
29 virtual ~
Stack() =
default;