X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseListS.ct;h=53e3d8a974f2eda560047b049b08ddaac7b0975a;hb=032707d24b1059febe83ce56b11fd79df106c6e2;hp=7e65fa968e8136800bf5d146020eafb7202c5ec5;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Packets/ParseListS.ct b/Packets/ParseListS.ct index 7e65fa9..53e3d8a 100644 --- a/Packets/ParseListS.ct +++ b/Packets/ParseListS.ct @@ -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,5 @@ satcom::pkf::Parse_ListS_wrapper::insert(iterator pos // Local Variables: // mode: c++ -// c-file-style: "satcom" +// c-file-style: "senf" // End: