X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.ct;h=56f93461999b1ad8df7adb3b2287f58f1dbc4a0c;hb=1ad3873b372da6187b1fbc645bf276287d2efb54;hp=0082ffbc82e0968e0b6fc5cecc468e6dcbfd21d0;hpb=ac6a813d9d99f7add4e13aff7a4bcd314d5604a6;p=senf.git diff --git a/Socket/SocketHandle.ct b/Socket/SocketHandle.ct index 0082ffb..56f9346 100644 --- a/Socket/SocketHandle.ct +++ b/Socket/SocketHandle.ct @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -20,7 +20,9 @@ // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// Definition of non-inline template functions +/** \file + \brief SocketHandle non-inline template implementation + */ #include "SocketHandle.ih" @@ -30,13 +32,16 @@ #define prefix_ ///////////////////////////////ct.p//////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////// +// senf::detail::StreamableString + template -prefix_ senf::detail::ConvertibleString & -senf::detail::ConvertibleString::operator+=(ConvertibleString const & other) +prefix_ senf::detail::StreamableString & +senf::detail::StreamableString::operator<<(T const & other) { if (!empty()) - this->std::string::operator+=(", "); - this->std::string::operator+=(other); + (*this) += ", "; + (*this) += boost::lexical_cast(other); return *this; } @@ -46,5 +51,10 @@ senf::detail::ConvertibleString::operator+=(ConvertibleString const & other) // Local Variables: // mode: c++ +// fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: