3c2f937d2d54e14117a5ac461697f9c27ef13a5d
[satune.git] / src / AST / mutableset.h
1 #ifndef MUTABLESET_H
2 #define MUTABLESET_H
3 #include "set.h"
4
5 class MutableSet : public Set {
6 public:
7         MutableSet(VarType t);
8         void addElementMSet(uint64_t element);
9         MEMALLOC;
10 };
11 #endif