move another helper to the helper dir

This commit is contained in:
Mathieu Lacage
2008-03-21 13:24:15 -07:00
parent e5818f9865
commit 048ffbe7d3
4 changed files with 6 additions and 5 deletions

View File

@@ -24,9 +24,9 @@
#include "ns3/simulator.h"
#include "ns3/node-list.h"
#include "ns3/node.h"
#include "ns3/static-speed-mobility-model.h"
#include "ns3/mobility-model-notifier.h"
#include "ns2-mobility-helper.h"
#include "static-speed-mobility-model.h"
#include "mobility-model-notifier.h"
NS_LOG_COMPONENT_DEFINE ("Ns2MobilityHelper");

View File

@@ -25,10 +25,11 @@
#include <stdint.h>
#include "ns3/ptr.h"
#include "ns3/object.h"
#include "static-speed-mobility-model.h"
namespace ns3 {
class StaticSpeedMobilityModel;
/**
* \brief a topology object which can read ns2's movement files
* generated by the CMU setdest tool.

View File

@@ -10,6 +10,7 @@ def build(bld):
'point-to-point-helper.cc',
'csma-helper.cc',
'mobility-helper.cc',
'ns2-mobility-helper.cc',
]
headers = bld.create_obj('ns3header')
@@ -22,4 +23,5 @@ def build(bld):
'point-to-point-helper.h',
'csma-helper.h',
'mobility-helper.h',
'ns2-mobility-helper.h',
]

View File

@@ -15,7 +15,6 @@ def build(bld):
'random-waypoint-mobility-model.cc',
'random-walk-2d-mobility-model.cc',
'random-direction-2d-mobility-model.cc',
'ns2-mobility-helper.cc',
]
headers = bld.create_obj('ns3header')
@@ -33,5 +32,4 @@ def build(bld):
'random-waypoint-mobility-model.h',
'random-walk-2d-mobility-model.h',
'random-direction-2d-mobility-model.h',
'ns2-mobility-helper.h',
]