A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
channel.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007 University of Washington
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
18#include "channel.h"
19
20#include "channel-list.h"
21#include "net-device.h"
22
23#include "ns3/log.h"
24#include "ns3/uinteger.h"
25
26namespace ns3
27{
28
30
32
33TypeId
35{
36 static TypeId tid = TypeId("ns3::Channel")
38 .SetGroupName("Network")
39 .AddAttribute("Id",
40 "The id (unique integer) of this Channel.",
44 MakeUintegerChecker<uint32_t>());
45 return tid;
46}
47
49 : m_id(0)
50{
51 NS_LOG_FUNCTION(this);
52 m_id = ChannelList::Add(this);
53}
54
56{
57 NS_LOG_FUNCTION(this);
58}
59
62{
63 NS_LOG_FUNCTION(this);
64 return m_id;
65}
66
67} // namespace ns3
uint32_t m_id
Channel id for this channel.
Definition: channel.h:79
uint32_t GetId() const
Definition: channel.cc:61
static TypeId GetTypeId()
Get the type ID.
Definition: channel.cc:34
~Channel() override
Definition: channel.cc:55
static uint32_t Add(Ptr< Channel > channel)
A base class which provides memory management and object aggregation.
Definition: object.h:89
a unique identifier for an interface.
Definition: type-id.h:59
@ ATTR_GET
The attribute can be read.
Definition: type-id.h:64
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:932
Hold an unsigned integer type.
Definition: uinteger.h:45
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Definition: uinteger.h:46
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:46
Every class exported by the ns3 library is enclosed in the ns3 namespace.