moved Sniffer into new Examples directory
[senf.git] / Packets / Packet.ih
index 1520385..456ae84 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2006 
+// Copyright (C) 2006
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
@@ -34,8 +34,8 @@
 #define SATCOM_PKF_REFC_MSG(x)
 #endif
 
-namespace satcom {
-namespace pkf {
+namespace senf {
+
 namespace impl {
 
     // This deleter is used in the PacketImpl list holding the
@@ -91,17 +91,17 @@ namespace impl {
     // method invocations
     void intrusive_ptr_add_ref(PacketImpl * p);
     void intrusive_ptr_release(PacketImpl * p);
-}}}
+}}
 
 
-struct satcom::pkf::Packet::PacketOp_register
+struct senf::Packet::PacketOp_register
 {
     size_type b;
     size_type e;
     const Packet * p;
 
-    PacketOp_register(size_type b_, size_type e_, const Packet * p_) 
-       : b(b_), e(e_), p(p_) {}
+    PacketOp_register(size_type b_, size_type e_, const Packet * p_)
+        : b(b_), e(e_), p(p_) {}
 
     size_type begin() const { return b; }
     size_type end() const { return e; }
@@ -109,7 +109,7 @@ struct satcom::pkf::Packet::PacketOp_register
     { p->i_registerInterpreter(self); }
 };
 
-struct satcom::pkf::Packet::PacketOp_replace 
+struct senf::Packet::PacketOp_replace
 {
     Packet * p;
 
@@ -121,7 +121,7 @@ struct satcom::pkf::Packet::PacketOp_replace
     { p->i_replaceInterpreter(self); }
 };
 
-struct satcom::pkf::Packet::PacketOp_set
+struct senf::Packet::PacketOp_set
 {
     impl::PacketImpl * i;
 
@@ -139,5 +139,8 @@ struct satcom::pkf::Packet::PacketOp_set
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: