update filenames

This commit is contained in:
2021-01-08 17:17:32 +01:00
parent 2f9f32e50e
commit 6485a3b3d6
6 changed files with 33 additions and 34 deletions

15
Assignment_3/lib/Stack.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include "Node.h"
class Stack {
protected:
std::string name;
Stack(std::string _name);
Node* first;
public:
bool push(int element);
bool pop(int element);
bool size(int element);
std::string print_stack();
};