/* $Id: showutil.h 5149 2010-03-24 23:37:18Z abehm $ Copyright (C) 2010 by The Regents of the University of California Redistribution of this file is permitted under the terms of the BSD license. Date: 04/20/2007 Author: Jiaheng Lu */ #ifndef _showutil_h_ #define _showutil_h_ #include #include #include #include "util/array.h" using namespace std; void showArrayUnsignedLists(const vector *> &lists); void showArrayUnsigned(Array *v); void showVectorUnsigned(vector *v); void printVectorUnsigned(const vector *v, unsigned count); void printArrayUnsigned(const unsigned *array, unsigned count); void showUnsignedSet( set > *s); void showStringVector(const vector &v); #endif