mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
16 lines
296 B
C++
16 lines
296 B
C++
#include "Stack.h"
|
|
#include "Node.h"
|
|
|
|
#include <iostream>
|
|
#include<sstream>
|
|
|
|
Stack::Stack(ADTOperationQueue * queue){
|
|
op_queue = queue;
|
|
}
|
|
|
|
void Stack::push(int element) { return; }
|
|
int Stack::pop() { return 0; }
|
|
int Stack::size() { return 0; }
|
|
|
|
std::string Stack::print_stack(){ return ""; }
|