A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ff-mac-scheduler.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 
22 #include "ff-mac-scheduler.h"
23 #include <ns3/log.h>
24 #include <ns3/enum.h>
25 
26 
27 NS_LOG_COMPONENT_DEFINE ("FfMacScheduler");
28 
29 namespace ns3 {
30 
31 NS_OBJECT_ENSURE_REGISTERED (FfMacScheduler);
32 
33 
35 : m_ulCqiFilter (ALL_UL_CQI)
36 {
37  NS_LOG_FUNCTION (this);
38 }
39 
40 
42 {
43  NS_LOG_FUNCTION (this);
44 }
45 
46 void
48 {
49  NS_LOG_FUNCTION (this);
50 }
51 
52 TypeId
54 {
55  static TypeId tid = TypeId ("ns3::FfMacScheduler")
56  .SetParent<Object> ()
57  .AddAttribute ("UlCqiFilter",
58  "The filter to apply on UL CQIs received",
62  FfMacScheduler::PUSCH_UL_CQI, "PUSCH_UL_CQI",
63  FfMacScheduler::ALL_UL_CQI, "ALL_UL_CQI"))
64  ;
65  return tid;
66 }
67 
68 
69 } // namespace ns3
70 
71 
72 
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
Ptr< const AttributeChecker > MakeEnumChecker(int v1, std::string n1, int v2, std::string n2, int v3, std::string n3, int v4, std::string n4, int v5, std::string n5, int v6, std::string n6, int v7, std::string n7, int v8, std::string n8, int v9, std::string n9, int v10, std::string n10, int v11, std::string n11, int v12, std::string n12, int v13, std::string n13, int v14, std::string n14, int v15, std::string n15, int v16, std::string n16, int v17, std::string n17, int v18, std::string n18, int v19, std::string n19, int v20, std::string n20, int v21, std::string n21, int v22, std::string n22)
Definition: enum.cc:178
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register the class in the ns-3 factory.
Definition: object-base.h:38
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
static TypeId GetTypeId(void)
hold variables of type 'enum'
Definition: enum.h:37
virtual ~FfMacScheduler()
destructor
Ptr< const AttributeAccessor > MakeEnumAccessor(T1 a1)
Definition: enum.h:118
UlCqiFilter_t m_ulCqiFilter
FfMacScheduler()
constructor
a base class which provides memory management and object aggregation
Definition: object.h:64
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...