move delay-jitter-estimation to stats/helper

This commit is contained in:
Tom Henderson
2013-06-18 13:21:35 -07:00
parent 5b536a7932
commit 7477fb5d43
4 changed files with 2 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ def build(bld):
'model/omnet-data-output.cc',
'model/data-collector.cc',
'model/gnuplot.cc',
'helper/delay-jitter-estimation.cc',
]
module_test = bld.create_ns3_module_test_library('stats')
@@ -38,6 +39,7 @@ def build(bld):
'model/omnet-data-output.h',
'model/data-collector.h',
'model/gnuplot.h',
'helper/delay-jitter-estimation.h',
]
if bld.env['SQLITE_STATS']:

View File

@@ -4,7 +4,6 @@ def build(bld):
module = bld.create_ns3_module('tools', ['network', 'stats'])
module.source = [
'model/delay-jitter-estimation.cc',
]
module_test = bld.create_ns3_module_test_library('tools')
@@ -16,6 +15,5 @@ def build(bld):
headers.module = 'tools'
headers.source = [
'model/average.h',
'model/delay-jitter-estimation.h',
]