Merge branch 'hamed' into brian
[satune.git] / src / Collections / structs.h
1 #ifndef STRUCTS_H
2 #define STRUCTS_H
3 #include "vector.h"
4 #include "hashtable.h"
5 #include "hashset.h"
6 #include "classlist.h"
7 #include "array.h"
8
9 ArrayDef(Element, Element *);
10 ArrayDef(Boolean, Boolean *);
11 ArrayDef(Set, Set *);
12
13 VectorDef(Table, Table *);
14 VectorDef(Set, Set *);
15 VectorDef(Boolean, Boolean *);
16 VectorDef(Constraint, Constraint *);
17 VectorDef(Function, Function *);
18 VectorDef(Predicate, Predicate *);
19 VectorDef(Element, Element *);
20 VectorDef(Order, Order *);
21 VectorDef(TableEntry, TableEntry *);
22 VectorDef(ASTNode, ASTNode *);
23 VectorDef(Int, uint64_t);
24
25 HashTableDef(Void, void *, void *);
26 HashTableDef(BoolConst, OrderPair *, OrderPair *);
27
28 HashSetDef(Void, void *);
29
30 #endif