A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
ipv6-routing-protocol.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009 University of Washington
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 */
6
7/* taken from src/node/ipv4-routing-protocol.cc and adapted to IPv6 */
8
10
11#include "ns3/assert.h"
12
13namespace ns3
14{
15
17
20{
21 static TypeId tid =
22 TypeId("ns3::Ipv6RoutingProtocol").SetParent<Object>().SetGroupName("Internet");
23 return tid;
24}
25
26} /* namespace ns3 */
Abstract base class for IPv6 routing protocols.
static TypeId GetTypeId()
Get the type ID.
Object()
Constructor.
Definition object.cc:96
a unique identifier for an interface.
Definition type-id.h:49
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition type-id.cc:1001
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition object-base.h:35
Every class exported by the ns3 library is enclosed in the ns3 namespace.