Adding PIT printout capability
diff --git a/model/ccnx-pit.cc b/model/ccnx-pit.cc
index ca2c3f3..c3c9fd2 100644
--- a/model/ccnx-pit.cc
+++ b/model/ccnx-pit.cc
@@ -196,4 +196,14 @@
   return make_tuple (cref(*entry), isNew, isDuplicate);
 }
 
+std::ostream& operator<< (std::ostream& os, const CcnxPit &pit)
+{
+  BOOST_FOREACH (const CcnxPitEntry &entry, pit)
+    {
+      os << entry;
+    }
+
+  return os;
+}
+
 } // namespace ns3