mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
16 lines
311 B
C++
16 lines
311 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();
|
|
std::string print_set();
|
|
}; |