Split Boolean into separate file
[satune.git] / src / classlist.h
1 /*      Copyright (c) 2015 Regents of the University of California
2  *
3  *      Author: Brian Demsky <bdemsky@uci.edu>
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      version 2 as published by the Free Software Foundation.
8  */
9
10 #ifndef CLASSLIST_H
11 #define CLASSLIST_H
12 #include "hashset.h"
13 #include "mymemory.h"
14 #include <inttypes.h>
15
16 class Constraint;
17 class Boolean;
18 class IncrementalSolver;
19 class Set;
20 class MutableSet;
21 class Element;
22 class Function;
23 class Predicate;
24 class Table;
25 class Order;
26
27 typedef unsigned int uint;
28 typedef uint64_t VarType;
29 #endif