//////////////////////////////////////////////////////////////////////////////// // Author: Andy Rushton // Copyright: (c) Southampton University 1999-2004 // (c) Andy Rushton 2004-2009 // License: BSD License, see ../docs/license.html //////////////////////////////////////////////////////////////////////////////// #include "print_vector.hpp" #include "string_vector.hpp" namespace stlplus { //////////////////////////////////////////////////////////////////////////////// // special case of vector void print_bool_vector(std::ostream& device, const std::vector& values) { device << bool_vector_to_string(values); } //////////////////////////////////////////////////////////////////////////////// } // end namespace stlplus