mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-08 01:53:58 +02:00
23 lines
600 B
C++
23 lines
600 B
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
#include "ns3/core-module.h"
|
|
#include "ns3/network-module.h"
|
|
#include "ns3/internet-module.h"
|
|
#include "ns3/applications-module.h"
|
|
#include "ns3/node-container.h"
|
|
|
|
#ifndef NDS_CACHE_HELPER_
|
|
#define NDS_CACHE_HELPER_
|
|
|
|
namespace ns3 {
|
|
|
|
class NdCacheHelper
|
|
{
|
|
public:
|
|
void Install (NetDeviceContainer &devices, Ipv6InterfaceContainer &interfaces) const;
|
|
void Install (NetDeviceContainer &devicesSrc, NetDeviceContainer &devicesDst, Ipv6InterfaceContainer &interfaces) const;
|
|
};
|
|
|
|
}; /* namespace ns3 */
|
|
|
|
#endif /* NDS_CACHE_HELPER */
|