From f55a3c0b3d5ec1da9feeeb48f8bb26be92830d44 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Tue, 28 Aug 2007 11:22:01 +0200 Subject: [PATCH] document also mobility model notifier --- utils/print-trace-sources.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/print-trace-sources.cc b/utils/print-trace-sources.cc index 0c3e489a0..948cf03c3 100644 --- a/utils/print-trace-sources.cc +++ b/utils/print-trace-sources.cc @@ -5,12 +5,14 @@ #include "ns3/point-to-point-net-device.h" #include "ns3/csma-cd-net-device.h" #include "ns3/queue.h" +#include "ns3/mobility-model-notifier.h" using namespace ns3; int main (int argc, char *argv[]) { Ptr node = Create (); + node->AddInterface (Create ()); Ptr p2p = Create (node); p2p->AddQueue (Queue::CreateDefault ());