5G-LENA nr-v4.0
The 5G/NR module for the ns-3 simulator
Loading...
Searching...
No Matches
nr-mac-scheduler-lc-alg.cc
1// Copyright (c) 2023 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
2//
3// SPDX-License-Identifier: GPL-2.0-only
4
5#include "nr-mac-scheduler-lc-alg.h"
6
7#include "ns3/log.h"
8
9namespace ns3
10{
11
12NS_LOG_COMPONENT_DEFINE("NrMacSchedulerLcAlgorithm");
13NS_OBJECT_ENSURE_REGISTERED(NrMacSchedulerLcAlgorithm);
14
16 : Object()
17{
18 NS_LOG_FUNCTION(this);
19}
20
24
25TypeId
27{
28 static TypeId tid = TypeId("ns3::NrMacSchedulerLcAlgorithm").SetParent<Object>();
29 return tid;
30}
31
32} // namespace ns3
~NrMacSchedulerLcAlgorithm() override
~NrMacSchedulerLc deconstructor
NrMacSchedulerLcAlgorithm()
NrMacSchedulerLcAlgorithm constructor.