PPI: Checkin of first compiling (yet not working) version
[senf.git] / Packets / PacketData.cti
index 2e10568..8486d87 100644 (file)
@@ -33,6 +33,7 @@
 
 // Modifying the raw packet data
 
+#ifndef DOXYGEN
 template <class InputIterator>
 prefix_ void senf::PacketData::
 insert(iterator pos, InputIterator f, InputIterator l,
@@ -40,6 +41,12 @@ insert(iterator pos, InputIterator f, InputIterator l,
 {
      impl().insert(this,pos,f,l);
 }
+#else
+template <class InputIterator>
+prefix_ void senf::PacketData::
+insert(iterator pos, InputIterator f, InputIterator l)
+{}
+#endif
 
 ///////////////////////////////cti.e///////////////////////////////////////
 #undef prefix_
@@ -51,4 +58,6 @@ insert(iterator pos, InputIterator f, InputIterator l,
 // c-file-style: "senf"
 // indent-tabs-mode: nil
 // ispell-local-dictionary: "american"
+// compile-command: "scons -u test"
+// comment-column: 40
 // End: