/* $Id: showutil.h 4025 2008-10-01 00:01:14Z abehm $ Copyright (C) 2007 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