#ifndef STLPLUS_STRING_BITSET #define STLPLUS_STRING_BITSET //////////////////////////////////////////////////////////////////////////////// // Author: Andy Rushton // Copyright: (c) Southampton University 1999-2004 // (c) Andy Rushton 2004-2009 // License: BSD License, see ../docs/license.html // Generate a string representation of a bitset //////////////////////////////////////////////////////////////////////////////// #include "strings_fixes.hpp" #include #include namespace stlplus { template std::string bitset_to_string(const std::bitset& data); } // end namespace stlplus #include "string_bitset.tpp" #endif