A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
network
helper
application-container.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19
*/
20
21
#ifndef APPLICATION_CONTAINER_H
22
#define APPLICATION_CONTAINER_H
23
24
#include <stdint.h>
25
#include <vector>
26
#include "ns3/application.h"
27
#include "ns3/random-variable-stream.h"
28
29
namespace
ns3
{
30
42
class
ApplicationContainer
43
{
44
public
:
48
ApplicationContainer
();
49
57
ApplicationContainer
(
Ptr<Application>
application);
58
66
ApplicationContainer
(std::string name);
67
69
typedef
std::vector<Ptr<Application> >::const_iterator
Iterator
;
70
90
Iterator
Begin
(
void
)
const
;
91
111
Iterator
End
(
void
)
const
;
112
133
uint32_t
GetN
(
void
)
const
;
134
156
Ptr<Application>
Get
(uint32_t i)
const
;
157
164
void
Add
(
ApplicationContainer
other);
165
171
void
Add
(
Ptr<Application>
application);
172
179
void
Add
(std::string name);
180
195
void
Start
(
Time
start
);
196
208
void
StartWithJitter
(
Time
start
,
Ptr<RandomVariableStream>
rv);
209
224
void
Stop
(
Time
stop);
225
226
private
:
227
std::vector<Ptr<Application> >
m_applications
;
228
};
229
230
}
// namespace ns3
231
232
#endif
/* APPLICATION_CONTAINER_H */
ns3::ApplicationContainer
holds a vector of ns3::Application pointers.
Definition:
application-container.h:42
ns3::Time
Simulation virtual time values and global simulation resolution.
Definition:
nstime.h:102
ns3::Ptr< Application >
ns3::ApplicationContainer::m_applications
std::vector< Ptr< Application > > m_applications
Applications smart pointers.
Definition:
application-container.h:227
ns3::ApplicationContainer::Add
void Add(ApplicationContainer other)
Append the contents of another ApplicationContainer to the end of this container. ...
Definition:
application-container.cc:67
visualizer.core.start
def start()
Definition:
core.py:1844
ns3::ApplicationContainer::End
Iterator End(void) const
Get an iterator which indicates past-the-last Application in the container.
Definition:
application-container.cc:51
ns3::ApplicationContainer::Begin
Iterator Begin(void) const
Get an iterator which refers to the first Application in the container.
Definition:
application-container.cc:46
ns3::ApplicationContainer::StartWithJitter
void StartWithJitter(Time start, Ptr< RandomVariableStream > rv)
Start all of the Applications in this container at the start time given as a parameter, plus some jitter.
Definition:
application-container.cc:96
ns3::ApplicationContainer::Iterator
std::vector< Ptr< Application > >::const_iterator Iterator
Application container iterator.
Definition:
application-container.h:69
ns3::ApplicationContainer::ApplicationContainer
ApplicationContainer()
Create an empty ApplicationContainer.
Definition:
application-container.cc:29
ns3::ApplicationContainer::Start
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
Definition:
application-container.cc:87
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::ApplicationContainer::Stop
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Definition:
application-container.cc:107
ns3::ApplicationContainer::Get
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
Definition:
application-container.cc:62
ns3::ApplicationContainer::GetN
uint32_t GetN(void) const
Get the number of Ptr<Application> stored in this container.
Definition:
application-container.cc:57
Generated on Wed Nov 7 2018 10:02:06 for ns-3 by
1.8.14