mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
fix methods pop push, size
This commit is contained in:
@@ -9,8 +9,8 @@ class Stack {
|
||||
Stack(ADTOperationQueue * queue);
|
||||
Node* first;
|
||||
public:
|
||||
bool push(int element);
|
||||
bool pop(int element);
|
||||
bool size(int element);
|
||||
void push(int element);
|
||||
int pop();
|
||||
int size();
|
||||
std::string print_stack();
|
||||
};
|
||||
Reference in New Issue
Block a user