A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
queue-disc-container.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Universita' degli Studi di Napoli Federico II
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Stefano Avallone <stavallo@unina.it>
18 */
19
21
22namespace ns3
23{
24
26{
27}
28
30{
31 m_queueDiscs.push_back(qDisc);
32}
33
36{
37 return m_queueDiscs.begin();
38}
39
42{
43 return m_queueDiscs.end();
44}
45
46std::size_t
48{
49 return m_queueDiscs.size();
50}
51
53QueueDiscContainer::Get(std::size_t i) const
54{
55 return m_queueDiscs[i];
56}
57
58void
60{
61 for (auto i = other.Begin(); i != other.End(); i++)
62 {
63 m_queueDiscs.push_back(*i);
64 }
65}
66
67void
69{
70 m_queueDiscs.push_back(qDisc);
71}
72
73} // namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Holds a vector of ns3::QueueDisc pointers.
void Add(QueueDiscContainer other)
Append the contents of another QueueDiscContainer to the end of this container.
std::vector< Ptr< QueueDisc > > m_queueDiscs
QueueDiscs smart pointers.
QueueDiscContainer()
Create an empty QueueDiscContainer.
ConstIterator Begin() const
Get a const iterator which refers to the first QueueDisc in the container.
ConstIterator End() const
Get a const iterator which indicates past-the-last QueueDisc in the container.
std::vector< Ptr< QueueDisc > >::const_iterator ConstIterator
QueueDisc container const iterator.
Ptr< QueueDisc > Get(std::size_t i) const
Get the Ptr<QueueDisc> stored in this container at a given index.
std::size_t GetN() const
Get the number of Ptr<QueueDisc> stored in this container.
Every class exported by the ns3 library is enclosed in the ns3 namespace.