mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
15 lines
285 B
C++
15 lines
285 B
C++
#pragma once
|
|
|
|
#include "Node.h"
|
|
#include "ADT_Stack.h"
|
|
|
|
class Stack {
|
|
protected:
|
|
ADTOperationQueue * op_queue;
|
|
Stack(ADTOperationQueue * queue);
|
|
public:
|
|
void push(int element);
|
|
int pop();
|
|
int size();
|
|
std::string print_stack();
|
|
}; |