X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.ct;h=98ce1009bdfb0aedbbbd09f8a016c26015d1751a;hb=6f50bf49e282c0528f51faa0a245bbfa2b867399;hp=eac4a09e8f4d106d0db40e5221bbf52109e21bec;hpb=70256cc93f59f5d2c9b3428775a181e5e225bfc5;p=senf.git diff --git a/Socket/SocketHandle.ct b/Socket/SocketHandle.ct index eac4a09..98ce100 100644 --- a/Socket/SocketHandle.ct +++ b/Socket/SocketHandle.ct @@ -1,9 +1,9 @@ // $Id$ // -// Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Copyright (C) 2006 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -21,32 +21,58 @@ // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /** \file - \brief senf::SocketHandle non-inline template implementation + \brief SocketHandle non-inline template implementation */ #include "SocketHandle.ih" // Custom includes #include +#include "../Utils/TypeInfo.hh" #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; } +/////////////////////////////////////////////////////////////////////////// +// senf::ProtocolSocketBody + +template +prefix_ senf::SocketProtocol const & senf::ProtocolSocketBody::v_protocol() + const +{ + return *this; +} + +template +prefix_ std::string senf::ProtocolSocketBody::v_protocolName() + const +{ + return senf::prettyName(typeid(SProtocol)); +} + ///////////////////////////////ct.e//////////////////////////////////////// #undef prefix_ // 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: