remove tools module

This commit is contained in:
Tom Henderson
2013-06-18 13:47:15 -07:00
parent 2180f8ad5d
commit 63606febe2
8 changed files with 4 additions and 5866 deletions

View File

@@ -754,8 +754,8 @@ EXAMPLE_PATH = src/aodv/examples \
src/point-to-point/examples \
src/propagation/examples \
src/spectrum/examples \
src/stats/examples \
src/tap-bridge/examples \
src/tools/examples \
src/topology-read/examples \
src/uan/examples \
src/virtual-net-device/examples \

View File

@@ -57,7 +57,6 @@
* - stats
* - tap-bridge
* - test
* - tools
* - topology-read
* - uan
* - virtual-net-device

View File

@@ -27,12 +27,12 @@ An Example Program that Uses the Gnuplot Class
An example program that uses |ns3|'s Gnuplot class can be found here: ::
src/tools/examples/gnuplot-example.cc
src/stats/examples/gnuplot-example.cc
In order to run this example, do the following: ::
./waf shell
cd build/debug/src/tools/examples
cd build/debug/src/stats/examples
./gnuplot-example
This should produce the following gnuplot control files in the directory where the example is located: ::

View File

@@ -26,7 +26,7 @@
namespace ns3 {
/**
* \ingroup tools
* \ingroup stats
*
* \brief quick and dirty delay and jitter estimation
*

View File

@@ -1,2 +0,0 @@
callback_classes = [
]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,17 +0,0 @@
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
module = bld.create_ns3_module('tools', ['network', 'stats'])
module.source = [
]
module_test = bld.create_ns3_module_test_library('tools')
module_test.source = [
]
headers = bld(features='ns3header')
headers.module = 'tools'
headers.source = [
]