commit | 95a4fa39dcbe6837a75d7f25935ad1c61282a237 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Mon Jul 09 15:23:59 2012 -0700 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Mon Jul 09 15:23:59 2012 -0700 |
tree | 24e115771d889f6d9d06e68a9e2189438bc50a4d | |
parent | 1ba09b8c3d87da7afa3a527ca2ba16c1175064c0 [diff] [blame] |
Fighting off python bindings and repairing ccnx_fib visualizer plugin
diff --git a/model/ccnx-fib.cc b/model/ccnx-fib.cc index c8153fc..f98839d 100644 --- a/model/ccnx-fib.cc +++ b/model/ccnx-fib.cc
@@ -42,7 +42,11 @@ TypeId CcnxFib::GetTypeId (void) { - return CcnxFibImpl::GetTypeId (); + static TypeId tid = TypeId ("ns3::CcnxFib") // cheating ns3 object system + .SetParent<Object> () + .SetGroupName ("Ccnx") + ; + return tid; } std::ostream& operator<< (std::ostream& os, const CcnxFib &fib)