add possibility to print a set to a string

This commit is contained in:
2021-01-02 18:39:25 +01:00
parent 297ee216dd
commit e76cc094e5
4 changed files with 29 additions and 5 deletions

View File

@@ -12,4 +12,5 @@ class Set {
bool rmv(int element);
bool ctn(int element);
std::string get_name();
std::string print_set();
};