A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
lte-handover-algorithm.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2013 Budiarto Herman
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Budiarto Herman <budiarto.herman@magister.fi>
7
*
8
*/
9
10
#include "
lte-handover-algorithm.h
"
11
12
#include <ns3/log.h>
13
14
namespace
ns3
15
{
16
17
NS_LOG_COMPONENT_DEFINE
(
"LteHandoverAlgorithm"
);
18
19
NS_OBJECT_ENSURE_REGISTERED
(LteHandoverAlgorithm);
20
21
LteHandoverAlgorithm::LteHandoverAlgorithm
()
22
{
23
}
24
25
LteHandoverAlgorithm::~LteHandoverAlgorithm
()
26
{
27
}
28
29
TypeId
30
LteHandoverAlgorithm::GetTypeId
()
31
{
32
static
TypeId
tid =
TypeId
(
"ns3::LteHandoverAlgorithm"
).
SetParent
<
Object
>().SetGroupName(
"Lte"
);
33
return
tid;
34
}
35
36
void
37
LteHandoverAlgorithm::DoDispose
()
38
{
39
}
40
41
}
// end of namespace ns3
ns3::LteHandoverAlgorithm::DoDispose
void DoDispose() override
Destructor implementation.
Definition
lte-handover-algorithm.cc:37
ns3::LteHandoverAlgorithm::~LteHandoverAlgorithm
~LteHandoverAlgorithm() override
Definition
lte-handover-algorithm.cc:25
ns3::LteHandoverAlgorithm::LteHandoverAlgorithm
LteHandoverAlgorithm()
Definition
lte-handover-algorithm.cc:21
ns3::LteHandoverAlgorithm::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition
lte-handover-algorithm.cc:30
ns3::Object
A base class which provides memory management and object aggregation.
Definition
object.h:78
ns3::TypeId
a unique identifier for an interface.
Definition
type-id.h:48
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition
type-id.cc:1001
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition
log.h:191
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition
object-base.h:35
lte-handover-algorithm.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
lte
model
lte-handover-algorithm.cc
Generated on Fri Nov 8 2024 13:59:03 for ns-3 by
1.11.0