Switch to vector class
[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