A Discrete-Event Network Simulator
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 "log.h"
12
13/**
14 * @file
15 * @ingroup scheduler
16 * ns3::Scheduler implementation.
17 */
18
19namespace ns3
20{
21
22NS_LOG_COMPONENT_DEFINE("Scheduler");
23
25
30
33{
34 static TypeId tid = TypeId("ns3::Scheduler").SetParent<Object>().SetGroupName("Core");
35 return tid;
36}
37
38} // namespace ns3
Object()
Caller graph was not generated because of its size.
Definition object.cc:93
Maintain the event list.
Definition scheduler.h:146
~Scheduler() override=0
Destructor.
Definition scheduler.cc:26
static TypeId GetTypeId()
Register this type.
Definition scheduler.cc:32
a unique identifier for an interface.
Definition type-id.h:49
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition type-id.cc:999
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition log.h:194
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition object-base.h:35
Debug message logging.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Scheduler abstract base class, ns3::Scheduler::Event and ns3::Scheduler::EventKey declarations.