Initial steps for Interest packet processing
diff --git a/model/ccnx-content-store.cc b/model/ccnx-content-store.cc
index 1a27969..87a8003 100644
--- a/model/ccnx-content-store.cc
+++ b/model/ccnx-content-store.cc
@@ -35,23 +35,23 @@
using namespace __ccnx_private;
-// TypeId
-// CcnxContentStore::GetTypeId (void)
-// {
-// static TypeId tid = TypeId ("ns3::CcnxContentStore")
-// .SetGroupName ("Ccnx")
-// .SetParent<Object> ()
-// .AddConstructor<CcnxContentStore> ()
-// .AddAttribute ("Size",
-// "Maximum number of packets that content storage can hold",
-// UintegerValue (100),
-// MakeUintegerAccessor (&CcnxContentStore::SetMaxSize,
-// &CcnxContentStore::GetMaxSize),
-// MakeUintegerChecker<uint32_t> ())
-// ;
+TypeId
+CcnxContentStore::GetTypeId (void)
+{
+ static TypeId tid = TypeId ("ns3::CcnxContentStore")
+ .SetGroupName ("Ccnx")
+ .SetParent<Object> ()
+ .AddConstructor<CcnxContentStore> ()
+ .AddAttribute ("Size",
+ "Maximum number of packets that content storage can hold",
+ UintegerValue (100),
+ MakeUintegerAccessor (&CcnxContentStore::SetMaxSize,
+ &CcnxContentStore::GetMaxSize),
+ MakeUintegerChecker<uint32_t> ())
+ ;
-// return tid;
-// }
+ return tid;
+}
CcnxContentObjectTail CcnxContentStoreEntry::m_tail;