#ifndef STLPLUS_STRING_POINTER #define STLPLUS_STRING_POINTER //////////////////////////////////////////////////////////////////////////////// // 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 an object pointed to //////////////////////////////////////////////////////////////////////////////// #include "strings_fixes.hpp" #include namespace stlplus { template std::string pointer_to_string(const T* value, S to_string_fn, const std::string& null_string = "", const std::string& prefix = "(", const std::string& suffix = ")"); } #include "string_pointer.tpp" #endif