A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
mesh-stack-installer.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, Lawrence Livermore National Laboratory
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Peter D. Barnes, Jr. <pdbarnes@llnl.gov>
7 */
8
10
11namespace ns3
12{
14
15TypeId
17{
18 static TypeId tid = TypeId("ns3::MeshStack").SetParent<Object>().SetGroupName("Mesh")
19 // No AddConstructor because this is an abstract class.
20 ;
21 return tid;
22}
23
24} // namespace ns3
static TypeId GetTypeId()
Register this type.
A base class which provides memory management and object aggregation.
Definition object.h:78
a unique identifier for an interface.
Definition type-id.h:48
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.