A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
spectrum-propagation-loss-model.cc
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 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 "spectrum-propagation-loss-model.h"
23 #include <ns3/log.h>
24 
25 NS_LOG_COMPONENT_DEFINE ("SpectrumPropagationLossModel");
26 
27 namespace ns3 {
28 
29 NS_OBJECT_ENSURE_REGISTERED (SpectrumPropagationLossModel);
30 
31 SpectrumPropagationLossModel::SpectrumPropagationLossModel ()
32  : m_next (0)
33 {
34 }
35 
36 SpectrumPropagationLossModel::~SpectrumPropagationLossModel ()
37 {
38 }
39 
40 void
42 {
43  m_next = 0;
44 }
45 
46 TypeId
47 SpectrumPropagationLossModel::GetTypeId (void)
48 {
49  static TypeId tid = TypeId ("ns3::SpectrumPropagationLossModel")
50  .SetParent<Object> ()
51  ;
52  return tid;
53 }
54 
55 
57 {
58  m_next = next;
59 }
60 
61 
66 {
68  if (m_next != 0)
69  {
70  rxPsd = m_next->DoCalcRxPowerSpectralDensity (rxPsd, a, b);
71  }
72  return rxPsd;
73 }
74 
75 } // namespace ns3
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
#define NS_LOG_COMPONENT_DEFINE(name)
Definition: log.h:122
virtual Ptr< SpectrumValue > DoCalcRxPowerSpectralDensity(Ptr< const SpectrumValue > txPsd, Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const =0
Ptr< SpectrumValue > CalcRxPowerSpectralDensity(Ptr< const SpectrumValue > txPsd, Ptr< const MobilityModel > a, Ptr< const MobilityModel > b) const
void SetNext(Ptr< SpectrumPropagationLossModel > next)
a base class which provides memory management and object aggregation
Definition: object.h:63
a unique identifier for an interface.
Definition: type-id.h:44
TypeId SetParent(TypeId tid)
Definition: type-id.cc:471