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
scheduler.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2006 INRIA
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
7
*/
8
9
#include "
scheduler.h
"
10
11
#include "
assert.h
"
12
#include "
log.h
"
13
14
/**
15
* \file
16
* \ingroup scheduler
17
* ns3::Scheduler implementation.
18
*/
19
20
namespace
ns3
21
{
22
23
NS_LOG_COMPONENT_DEFINE
(
"Scheduler"
);
24
25
NS_OBJECT_ENSURE_REGISTERED
(Scheduler);
26
27
Scheduler::~Scheduler
()
28
{
29
NS_LOG_FUNCTION
(
this
);
30
}
31
32
TypeId
33
Scheduler::GetTypeId
()
34
{
35
static
TypeId
tid =
TypeId
(
"ns3::Scheduler"
).
SetParent
<
Object
>().SetGroupName(
"Core"
);
36
return
tid;
37
}
38
39
}
// namespace ns3
assert.h
NS_ASSERT() and NS_ASSERT_MSG() macro definitions.
ns3::Object
A base class which provides memory management and object aggregation.
Definition
object.h:78
ns3::Scheduler::~Scheduler
~Scheduler() override=0
Destructor.
Definition
scheduler.cc:27
ns3::Scheduler::GetTypeId
static TypeId GetTypeId()
Register this type.
Definition
scheduler.cc:33
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_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition
log-macros-enabled.h:229
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition
object-base.h:35
log.h
Debug message logging.
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
scheduler.h
ns3::Scheduler abstract base class, ns3::Scheduler::Event and ns3::Scheduler::EventKey declarations.
src
core
model
scheduler.cc
Generated on Fri Nov 8 2024 13:58:59 for ns-3 by
1.11.0