A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
lte-rlc-sequence-number.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Manuel Requena <manuel.requena@cttc.es>
7 */
8
10
11namespace ns3
12{
13
14/**
15 * Ostream output function
16 * \param os the output stream
17 * \param val the sequence number
18 * \returns the os
19 */
20std::ostream&
21operator<<(std::ostream& os, const SequenceNumber10& val)
22{
23 os << val.m_value;
24 return os;
25}
26
27} // namespace ns3
SequenceNumber10 class.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition angles.cc:148