Implemented global cross-reference generation
[senf.git] / Packets / ParseVec.ct
index a34f1c9..b8368ab 100644 (file)
@@ -32,7 +32,7 @@
 template <class Parser, class SizeParser, class Container>
 template <class Value>
 prefix_ void
-satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
+senf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
                                                                        Value const & t)
 {
     size_type ix(pos.raw()-container_.begin());
@@ -43,7 +43,7 @@ satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator
 template <class Parser, class SizeParser, class Container>
 template <class Value>
 prefix_ void
-satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
+senf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
                                                                        size_type n,
                                                                        Value const & t)
 {
@@ -57,12 +57,13 @@ satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator
 template <class Parser, class SizeParser, class Container>
 template <class InputIterator>
 prefix_ void
-satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
+senf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
                                                                        InputIterator f,
                                                                        InputIterator l)
 {
-    // FIXME: This is HORRIBLY inefficient ... we need to specialize 
-    // for random_aPacketRegistry.ess and forward iterators, where we can count the distance
+    /** \fixme This might be horribly inefficient ... we need to
+       specialize for random_access and forward iterators, where we
+       can count the distance */
 
     size_type ix(pos.raw()-container_.begin());
     for (;f!=l;++f) {
@@ -77,5 +78,5 @@ satcom::pkf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// c-file-style: "senf"
 // End: