///////////////////////////////////////////// // typedefs.h // is part of BooleSuite 1.0 by Bob Marinier, marinier@cs.wisc.edu // see legal.lic for legal info // // various typedefs to avoid very long declarations elsewhere and to allow me to change datatypes ///////////////////////////////////////////// #if !defined(_TYPEDEFS_H_) #define _TYPEDEFS_H_ #include #include #include "Example.h" //these classes defined elsewhere //need to do this to avoid circularity class ResultSet; class Result; typedef std::deque< Example* > DATACONT; typedef std::vector< Result > RESULTSCONT; typedef std::vector< ResultSet* > RESULTSETSCONT; #endif