Normalizing namespace usage (ndnSIM namespace is now always under ns3)
diff --git a/model/forwarding-strategy/fw-stats.h b/model/forwarding-strategy/fw-stats.h
index 1d7140f..2b1d337 100644
--- a/model/forwarding-strategy/fw-stats.h
+++ b/model/forwarding-strategy/fw-stats.h
@@ -47,7 +47,7 @@
   FwStats ();
 
   inline
-  const ::ndnSIM::StatsTree &
+  const StatsTree &
   GetStatsTree () const;  
 
   virtual void
@@ -107,16 +107,16 @@
   ScheduleRefreshingIfNecessary ();
   
 private:
-  ::ndnSIM::StatsTree m_stats;
+  StatsTree m_stats;
   EventId m_statsRefreshEvent;
 
   TracedCallback< Ptr<NdnForwardingStrategy>,
-                  const ::ndnSIM::StatsTree & > m_statsTrace;
+                  const StatsTree & > m_statsTrace;
   
   typedef BestRoute super;
 };
 
-const ::ndnSIM::StatsTree &
+const StatsTree &
 FwStats::GetStatsTree () const
 {
   return m_stats;