Switch to vector class
[satune.git] / src / AST / set.h
index 172f0a7abfb8bb28aa37111e0e1948d20667fc30..9303fa843cc059d6bb6348641b7b50b1bde8e431 100644 (file)
@@ -14,6 +14,7 @@
 
 class Set {
  public:
+       Set(VarType t);
        Set(VarType t, uint64_t *elements, uint num);
        Set(VarType t, uint64_t lowrange, uint64_t highrange);
        ~Set();
@@ -25,10 +26,9 @@ class Set {
        bool isRange;
        uint64_t low;//also used to count unique items
        uint64_t high;
-       VectorInt *members;
+       Vector<uint64_t> *members;
        MEMALLOC;
 };
 
-
 #endif/* SET_H */