A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
lte-simple-helper.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2012 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: Manuel Requena <manuel.requena@cttc.es> (Based on lte-helper.h)
19  */
20 
21 #ifndef LTE_SIMPLE_HELPER_H
22 #define LTE_SIMPLE_HELPER_H
23 
24 #include "ns3/net-device-container.h"
25 #include "ns3/simple-channel.h"
26 #include "ns3/node-container.h"
27 #include "ns3/radio-bearer-stats-calculator.h"
28 
29 #include "ns3/lte-pdcp.h"
30 #include "ns3/lte-rlc.h"
31 #include "ns3/lte-rlc-um.h"
32 #include "ns3/lte-rlc-am.h"
33 
34 namespace ns3 {
35 
36 class LteTestRrc;
37 class LteTestMac;
38 
43 class LteSimpleHelper : public Object
44 {
45 public:
46  LteSimpleHelper (void);
47  virtual ~LteSimpleHelper (void);
48 
49  static TypeId GetTypeId (void);
50  virtual void DoDispose (void);
51 
52 
61 
70 
71 
76  void EnableLogComponents (void);
77 
81  void EnableTraces (void);
82 
83 
87  void EnableRlcTraces (void);
88 
92  void EnableDlRlcTraces (void);
93 
97  void EnableUlRlcTraces (void);
98 
99 
103  void EnablePdcpTraces (void);
104 
108  void EnableDlPdcpTraces (void);
109 
113  void EnableUlPdcpTraces (void);
114 
115 
116 protected:
117  // inherited from Object
118  virtual void DoStart (void);
119 
120 private:
123 
125 
126 public:
127 
130 
133 
134 private:
135 
138 
141 
144 
147 
148 };
149 
150 
151 } // namespace ns3
152 
153 
154 #endif // LTE_SIMPLE_HELPER_H