X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseListS.ct;h=56388a8720334b3c1c0d2e0e43e5d5968103999b;hb=9a988902090d28007578e93bffd809f6bd913155;hp=7e65fa968e8136800bf5d146020eafb7202c5ec5;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Packets/ParseListS.ct b/Packets/ParseListS.ct index 7e65fa9..56388a8 100644 --- a/Packets/ParseListS.ct +++ b/Packets/ParseListS.ct @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -31,7 +31,7 @@ ///////////////////////////////ct.p//////////////////////////////////////// template -prefix_ unsigned satcom::pkf::Parse_ListS::bytes() +prefix_ unsigned senf::Parse_ListS::bytes() const { iterator i (begin()); @@ -46,7 +46,7 @@ prefix_ unsigned satcom::pkf::Parse_ListS::byt template prefix_ bool -satcom::pkf::Parse_ListS::check(Iterator const & e) +senf::Parse_ListS::check(Iterator const & e) const { byte_iterator i (this->i()); @@ -61,7 +61,7 @@ satcom::pkf::Parse_ListS::check(Iterator const } template -prefix_ void satcom::pkf::Parse_ListS::init() +prefix_ void senf::Parse_ListS::init() const { iterator i (begin()); @@ -74,15 +74,15 @@ prefix_ void satcom::pkf::Parse_ListS::init() } /////////////////////////////////////////////////////////////////////////// -// satcom::pkf::Parse_ListS_wrapper +// senf::Parse_ListS_wrapper template template prefix_ void -satcom::pkf::Parse_ListS_wrapper::insert(iterator pos, +senf::Parse_ListS_wrapper::insert(iterator pos, Value const & t) { - // FIXME: What, if pos == end() / default constructed iterator ? + /** \fixme What, if pos == end() / default constructed iterator ? */ size_type ix (pos.raw()-container_.begin()); container_.insert(pos.raw(),t.bytes(),0); Parser(container_.begin()+ix).value(t); @@ -91,7 +91,7 @@ satcom::pkf::Parse_ListS_wrapper::insert(iterator pos template template prefix_ void -satcom::pkf::Parse_ListS_wrapper::insert(iterator pos, size_type n, +senf::Parse_ListS_wrapper::insert(iterator pos, size_type n, Value const & t) { size_type ix (pos.raw()-container_.begin()); @@ -104,7 +104,7 @@ satcom::pkf::Parse_ListS_wrapper::insert(iterator pos template template prefix_ void -satcom::pkf::Parse_ListS_wrapper::insert(iterator pos, +senf::Parse_ListS_wrapper::insert(iterator pos, InputIterator f, InputIterator l) { @@ -117,5 +117,8 @@ satcom::pkf::Parse_ListS_wrapper::insert(iterator pos // Local Variables: // mode: c++ -// c-file-style: "satcom" +// fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" // End: