// file : Utility/ExH/Converter.tpp // author : Boris Kolpackov // copyright : Copyright (c) 2002-2003 Boris Kolpackov // license : http://kolpackov.net/license.html namespace Utility { namespace ExH { template std::string converter (T const& t) { // Default implementation just assumes that implicit converion exist. return t; } } } //$Id$