replace yans include with ns3 include

This commit is contained in:
Mathieu Lacage
2006-08-29 17:51:04 +02:00
parent 344fe9eb0a
commit e54c17ecd7
29 changed files with 51 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
#include "yans/callback.h"
#include "ns3/callback.h"
#include <cassert>
#include <iostream>

View File

@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
#include "yans/event.h"
#include "yans/event.tcc"
#include "ns3/event.h"
#include "ns3/event.tcc"
#include <iostream>
using namespace yans;

View File

@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
#include "yans/packet.h"
#include "yans/chunk.h"
#include "ns3/packet.h"
#include "ns3/chunk.h"
#include <iostream>
using namespace yans;

View File

@@ -1,7 +1,7 @@
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
#include "yans/event.h"
#include "yans/event.tcc"
#include "yans/simulator.h"
#include "ns3/event.h"
#include "ns3/event.tcc"
#include "ns3/simulator.h"
#include <iostream>
using namespace yans;

View File

@@ -1,9 +1,9 @@
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
#include "yans/trace-container.h"
#include "yans/ui-traced-variable.tcc"
#include "yans/packet-logger.h"
#include "yans/trace-stream.h"
#include "yans/pcap-writer.h"
#include "ns3/trace-container.h"
#include "ns3/ui-traced-variable.tcc"
#include "ns3/packet-logger.h"
#include "ns3/trace-stream.h"
#include "ns3/pcap-writer.h"
#include <iostream>
using namespace yans;

View File

@@ -377,7 +377,7 @@ Buffer::peek_data (void) const
#ifdef RUN_SELF_TESTS
#include "yans/test.h"
#include "ns3/test.h"
#include <iomanip>
namespace yans {

View File

@@ -22,7 +22,7 @@
#ifndef CALLBACK_LOGGER_H
#define CALLBACK_LOGGER_H
#include "yans/callback.h"
#include "ns3/callback.h"
namespace yans {

View File

@@ -22,7 +22,7 @@
#ifndef F_TRACED_VARIABLE_TCC
#define F_TRACED_VARIABLE_TCC
#include "yans/callback.h"
#include "ns3/callback.h"
#include <stdint.h>
namespace yans {

View File

@@ -22,7 +22,7 @@
#define IPV4_NETWORK_INTERFACE
#include "ipv4-address.h"
#include "yans/callback.h"
#include "ns3/callback.h"
#include "packet.h"
namespace yans {

View File

@@ -22,7 +22,7 @@
#define LLC_SNAP_ENCAPSULATION
#include <stdint.h>
#include "yans/callback.h"
#include "ns3/callback.h"
#include "mac-address.h"
#include "packet.h"

View File

@@ -22,7 +22,7 @@
#define MAC_NETWORK_INTERFACE_H
#include <stdint.h>
#include "yans/callback.h"
#include "ns3/callback.h"
#include "mac-address.h"
#include "packet.h"

View File

@@ -22,7 +22,7 @@
#ifndef PACKET_LOGGER_H
#define PACKET_LOGGER_H
#include "yans/callback.h"
#include "ns3/callback.h"
#include "packet.h"
namespace yans {

View File

@@ -25,7 +25,7 @@
#include "buffer.h"
#include "chunk.h"
#include "tags.h"
#include "yans/callback.h"
#include "ns3/callback.h"
namespace yans {

View File

@@ -24,8 +24,8 @@
* http://wiki.ethereal.com/Development/LibpcapFileFormat
*/
#include "yans/simulator.h"
#include "yans/system-file.h"
#include "ns3/simulator.h"
#include "ns3/system-file.h"
#include "pcap-writer.h"
#include "packet.h"

View File

@@ -22,7 +22,7 @@
#ifndef PCAP_WRITER_H
#define PCAP_WRITER_H
#include "yans/callback.h"
#include "ns3/callback.h"
#include <stdint.h>
#include "packet.h"

View File

@@ -22,7 +22,7 @@
#ifndef SI_TRACED_VARIABLE_TCC
#define SI_TRACED_VARIABLE_TCC
#include "yans/callback.h"
#include "ns3/callback.h"
#include <stdint.h>
namespace yans {
@@ -69,7 +69,7 @@ class UiTracedVariable;
* yans::UiTracedVariable<int32_t> :
\code
#include <stdint.h>
#include "yans/si-traced-variable.tcc"
#include "ns3/si-traced-variable.tcc"
yans::SiTracedVariable<uint16_t> var;
\endcode

View File

@@ -19,7 +19,7 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "static-speed-position.h"
#include "yans/simulator.h"
#include "ns3/simulator.h"
namespace yans {

View File

@@ -178,7 +178,7 @@ Tags::pretty_print (std::ostream &os)
#ifdef RUN_SELF_TESTS
#include "yans/test.h"
#include "ns3/test.h"
#include <iomanip>
#include <iostream>

View File

@@ -26,7 +26,7 @@
#include "si-traced-variable.tcc"
#include "f-traced-variable.tcc"
#include "callback-logger.h"
#include "yans/callback.h"
#include "ns3/callback.h"
#include "packet.h"
#include <list>
#include <string>

View File

@@ -19,7 +19,7 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "trace-stream.h"
#include "yans/test.h"
#include "ns3/test.h"
#include <iostream>
#ifdef RUN_SELF_TESTS

View File

@@ -21,8 +21,8 @@
#include "ui-traced-variable.tcc"
#include "si-traced-variable.tcc"
#include "yans/test.h"
#include "yans/callback.h"
#include "ns3/test.h"
#include "ns3/callback.h"
namespace yans {

View File

@@ -22,7 +22,7 @@
#ifndef UI_TRACED_VARIABLE_TCC
#define UI_TRACED_VARIABLE_TCC
#include "yans/callback.h"
#include "ns3/callback.h"
#include <stdint.h>
namespace yans {
@@ -72,7 +72,7 @@ class SiTracedVariable;
* yans::UiTracedVariable<uint32_t> :
\code
#include <stdint.h>
#include "yans/ui-traced-variable.tcc"
#include "ns3/ui-traced-variable.tcc"
yans::UiTracedVariable<uint32_t> var;
\endcode

View File

@@ -160,7 +160,7 @@ utils_checksum_complete (uint16_t checksum)
#ifdef RUN_SELF_TESTS
#include "yans/test.h"
#include "ns3/test.h"
namespace yans {
class UtilsTest : public Test {

View File

@@ -19,7 +19,7 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "event.tcc"
#include "yans/test.h"
#include "ns3/test.h"
#ifdef RUN_SELF_TESTS

View File

@@ -23,7 +23,7 @@
#include "scheduler.h"
#include "event.h"
#include "event.tcc"
#include "yans/system-semaphore.h"
#include "ns3/system-semaphore.h"
#include <math.h>
#include <cassert>

View File

@@ -18,11 +18,11 @@
*
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "yans/wall-clock-ms.h"
#include "yans/packet.h"
#include "yans/chunk-constant-data.h"
#include "yans/chunk-udp.h"
#include "yans/chunk-ipv4.h"
#include "ns3/wall-clock-ms.h"
#include "ns3/packet.h"
#include "ns3/chunk-constant-data.h"
#include "ns3/chunk-udp.h"
#include "ns3/chunk-ipv4.h"
#include <iostream>
using namespace yans;

View File

@@ -19,10 +19,10 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "yans/simulator.h"
#include "yans/event.h"
#include "yans/event.tcc"
#include "yans/wall-clock-ms.h"
#include "ns3/simulator.h"
#include "ns3/event.h"
#include "ns3/event.tcc"
#include "ns3/wall-clock-ms.h"
#include <iostream>
#include <fstream>
#include <vector>

View File

@@ -19,10 +19,10 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "yans/simulator.h"
#include "yans/event.h"
#include "yans/event.tcc"
#include "yans/wall-clock-ms.h"
#include "ns3/simulator.h"
#include "ns3/event.h"
#include "ns3/event.tcc"
#include "ns3/wall-clock-ms.h"
#include <vector>
#include <deque>
#include <fstream>

View File

@@ -19,7 +19,7 @@
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
*/
#include "yans/test.h"
#include "ns3/test.h"
int main (int argc, char *argv[])
{