author | jnin |
Wed, 23 Mar 2011 11:02:32 +0100 | |
changeset 7905 | 80557b09aa7f |
parent 7886 | b65c16d4da83 |
child 9039 | 5bdf0c1be85f |
permissions | -rw-r--r-- |
7886 | 1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
2 |
/* |
|
3 |
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC) |
|
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: Nicola Baldo <nbaldo@cttc.es> |
|
19 |
*/ |
|
20 |
||
21 |
||
22 |
#include "ff-mac-scheduler.h" |
|
23 |
#include <ns3/log.h> |
|
24 |
||
25 |
NS_LOG_COMPONENT_DEFINE ("FfMacScheduler"); |
|
26 |
||
27 |
namespace ns3 { |
|
28 |
||
7905
80557b09aa7f
Added missing NS_OBJECT_ENSURE_REGISTERED to all ns3::Objects created.
jnin
parents:
7886
diff
changeset
|
29 |
NS_OBJECT_ENSURE_REGISTERED (FfMacScheduler); |
80557b09aa7f
Added missing NS_OBJECT_ENSURE_REGISTERED to all ns3::Objects created.
jnin
parents:
7886
diff
changeset
|
30 |
|
7886 | 31 |
|
32 |
FfMacScheduler::~FfMacScheduler () |
|
33 |
{ |
|
34 |
NS_LOG_FUNCTION (this); |
|
35 |
} |
|
36 |
||
37 |
void |
|
38 |
FfMacScheduler::DoDispose () |
|
39 |
{ |
|
40 |
NS_LOG_FUNCTION (this); |
|
41 |
} |
|
42 |
||
43 |
TypeId |
|
44 |
FfMacScheduler::GetTypeId (void) |
|
45 |
{ |
|
7905
80557b09aa7f
Added missing NS_OBJECT_ENSURE_REGISTERED to all ns3::Objects created.
jnin
parents:
7886
diff
changeset
|
46 |
static TypeId tid = TypeId ("ns3::FfMacScheduler") |
7886 | 47 |
.SetParent<Object> (); |
48 |
return tid; |
|
49 |
} |
|
50 |
||
51 |
} // namespace ns3 |
|
52 |
||
53 |
||
54 |