switch to C
[satune.git] / src / mutableset.h
index 479f16c8101e5fa5efc70907db6598e3b86bca08..eee89bbf3e47c725d8bee393a4e1b4c6f3ba400e 100644 (file)
@@ -2,8 +2,5 @@
 #define MUTABLESET_H
 #include "set.h"
 
-class MutableSet : Set {
-public:
-       void addElement(uint64_t element) { members->push_back(element); }
-};
+void addElementMSet(MutableSet * set, uint64_t element);
 #endif