Files
UU_la_parallel_programming_…/Assignment_2/lib/Set.h

15 lines
278 B
C++

#pragma once
#include "Node.h"
class Set {
protected:
std::string name;
Set(std::string _name);
Node* first;
public:
bool add(int element);
bool rmv(int element);
bool ctn(int element);
std::string get_name();
};