data: Add ability to print out information about Data packet using std::ostream

Change-Id: I20869cebd259e90f8b69d48758a090a8c31fa34c
diff --git a/include/ndn-cpp/data.hpp b/include/ndn-cpp/data.hpp
index 3f0d00b..d25253f 100644
--- a/include/ndn-cpp/data.hpp
+++ b/include/ndn-cpp/data.hpp
@@ -273,6 +273,9 @@
   wire_ = Block();
 }
 
+std::ostream&
+operator << (std::ostream &os, const Data &data);
+
 } // namespace ndn
 
 #endif