mirror of
https://github.com/13hannes11/UU_la_parallel_programming_practical_assignments.git
synced 2024-09-04 00:50:58 +02:00
add possibility to print a set to a string
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
class Node {
|
||||
protected:
|
||||
int data;
|
||||
bool is_dummy;
|
||||
bool dummy;
|
||||
std::mutex mut;
|
||||
|
||||
public:
|
||||
@@ -21,4 +21,6 @@ class Node {
|
||||
bool is_smaller_than(int n);
|
||||
bool is_smaller_than(Node* n);
|
||||
bool is_equal(int n);
|
||||
bool is_dummy();
|
||||
int get_data();
|
||||
};
|
||||
Reference in New Issue
Block a user