A Discrete-Event Network Simulator
API
burst-profile-manager.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2007,2008 INRIA
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: Jahanzeb Farooq <jahanzeb.farooq@sophia.inria.fr>
19  */
20 
21 #ifndef BURST_PROFILE_MANAGER_H
22 #define BURST_PROFILE_MANAGER_H
23 
24 #include <stdint.h>
25 #include "cid.h"
26 #include "wimax-phy.h"
27 #include "wimax-net-device.h"
28 
29 namespace ns3 {
30 
31 class SSRecord;
32 class RngReq;
33 
38 {
39 public:
44  static TypeId GetTypeId (void);
51  ~BurstProfileManager (void);
52  void DoDispose (void);
56  uint16_t GetNrBurstProfilesToDefine (void);
57 
65  WimaxNetDevice::Direction direction) const;
66 
73  uint8_t GetBurstProfile (WimaxPhy::ModulationType modulationType,
74  WimaxNetDevice::Direction direction) const;
75 
83  uint8_t GetBurstProfileForSS (const SSRecord *ssRecord, const RngReq *rngreq,
84  WimaxPhy::ModulationType &modulationType);
92  const RngReq *rngreq);
97  uint8_t GetBurstProfileToRequest (void);
98 private:
106 
108 };
109 
110 } // namespace ns3
111 
112 #endif /* BURST_PROFILE_MANAGER_H */
uint16_t GetNrBurstProfilesToDefine(void)
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
WimaxPhy::ModulationType GetModulationTypeForSS(const SSRecord *ssRecord, const RngReq *rngreq)
Get module ation type for SS.
This class implements the ranging request message described by "IEEE Standard for Local and metropoli...
Definition: mac-messages.h:642
WimaxPhy::ModulationType GetModulationType(uint8_t iuc, WimaxNetDevice::Direction direction) const
returns the modulation type of a given iuc
Ptr< WimaxNetDevice > m_device
the device
Direction
Direction enumeration.
uint8_t GetBurstProfileForSS(const SSRecord *ssRecord, const RngReq *rngreq, WimaxPhy::ModulationType &modulationType)
Get burst profile for SS.
uint8_t GetBurstProfileToRequest(void)
Get burst profile to request.
static TypeId GetTypeId(void)
Get the type ID.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t GetBurstProfile(WimaxPhy::ModulationType modulationType, WimaxNetDevice::Direction direction) const
returns the burst profile
BurstProfileManager & operator=(const BurstProfileManager &)
Assignment operator.
ModulationType
ModulationType enumeration.
Definition: wimax-phy.h:49
void DoDispose(void)
Destructor implementation.
This class is used by the base station to store some information related to subscriber station in the...
Definition: ss-record.h:43
A base class which provides memory management and object aggregation.
Definition: object.h:87
BurstProfileManager(Ptr< WimaxNetDevice > device)
Constructor.
a unique identifier for an interface.
Definition: type-id.h:58