A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
basic-energy-source-helper.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2010 Network Security Lab, University of Washington, Seattle.
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Authors: Sidharth Nabar <snabar@uw.edu>, He Wu <mdzz@u.washington.edu>
7
*/
8
9
#include "
basic-energy-source-helper.h
"
10
11
#include "ns3/energy-source.h"
12
13
namespace
ns3
14
{
15
16
BasicEnergySourceHelper::BasicEnergySourceHelper
()
17
{
18
m_basicEnergySource
.
SetTypeId
(
"ns3::energy::BasicEnergySource"
);
19
}
20
21
BasicEnergySourceHelper::~BasicEnergySourceHelper
()
22
{
23
}
24
25
void
26
BasicEnergySourceHelper::Set
(std::string name,
const
AttributeValue
& v)
27
{
28
m_basicEnergySource
.
Set
(name, v);
29
}
30
31
Ptr<energy::EnergySource>
32
BasicEnergySourceHelper::DoInstall
(
Ptr<Node>
node)
const
33
{
34
NS_ASSERT
(node);
35
Ptr<energy::EnergySource>
source =
m_basicEnergySource
.
Create
<
energy::EnergySource
>();
36
NS_ASSERT
(source);
37
source->SetNode(node);
38
return
source;
39
}
40
41
}
// namespace ns3
basic-energy-source-helper.h
ns3::AttributeValue
Hold a value for an Attribute.
Definition
attribute.h:59
ns3::BasicEnergySourceHelper::DoInstall
Ptr< energy::EnergySource > DoInstall(Ptr< Node > node) const override
Definition
basic-energy-source-helper.cc:32
ns3::BasicEnergySourceHelper::BasicEnergySourceHelper
BasicEnergySourceHelper()
Definition
basic-energy-source-helper.cc:16
ns3::BasicEnergySourceHelper::m_basicEnergySource
ObjectFactory m_basicEnergySource
Energy source factory.
Definition
basic-energy-source-helper.h:36
ns3::BasicEnergySourceHelper::Set
void Set(std::string name, const AttributeValue &v) override
Definition
basic-energy-source-helper.cc:26
ns3::BasicEnergySourceHelper::~BasicEnergySourceHelper
~BasicEnergySourceHelper() override
Definition
basic-energy-source-helper.cc:21
ns3::ObjectFactory::Create
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
Definition
object-factory.cc:82
ns3::ObjectFactory::Set
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
Definition
object-factory.h:213
ns3::ObjectFactory::SetTypeId
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Definition
object-factory.cc:31
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition
mpi-test-fixtures.h:37
ns3::energy::EnergySource
Energy source base class.
Definition
energy-source.h:77
NS_ASSERT
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition
assert.h:55
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
energy
helper
basic-energy-source-helper.cc
Generated on Fri Nov 8 2024 13:59:00 for ns-3 by
1.11.0