In common.h, remove Ptr.  In interest.h, etc. typedef InterestPtr and ConstInterestPtr, etc.

We will centralize and allow these to be typedef as boost::shared_ptr
or std::shared_ptr.
diff --git a/ndn-cpp/helpers/hash.h b/ndn-cpp/helpers/hash.h
index 1652f2b..8ac23fa 100644
--- a/ndn-cpp/helpers/hash.h
+++ b/ndn-cpp/helpers/hash.h
@@ -25,6 +25,7 @@
 
 class Hash;
 typedef boost::shared_ptr<Hash> HashPtr;
+typedef boost::shared_ptr<const Hash> ConstHashPtr;
 
 class Hash
 {