mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
15 lines
349 B
C++
15 lines
349 B
C++
#include "Set.h"
|
|
#include "Node.h"
|
|
|
|
Set::Set(std::string _name){
|
|
name = _name;
|
|
first = Node::Dummy();
|
|
Node* last = Node::Dummy();
|
|
first->next = last;
|
|
}
|
|
|
|
bool Set::add(int element) { return false; }
|
|
bool Set::rmv(int element) { return false; }
|
|
bool Set::ctn(int element) { return false; }
|
|
std::string Set::get_name() { return name; }
|