author | Manuel Requena <manuel.requena@cttc.es> |
Tue, 26 Mar 2013 10:41:49 +0100 | |
changeset 10019 | 6efd95740e39 |
parent 9423 | 7127b2b9668f |
child 10271 | 6f6ffd9379b0 |
permissions | -rw-r--r-- |
9423
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
1 |
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
2 |
/* |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
3 |
* Copyright (c) 2012 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC) |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
4 |
* |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License version 2 as |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation; |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
8 |
* |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
13 |
* |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
17 |
* |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
18 |
* Author: Nicola Baldo <nbaldo@cttc.es> |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
19 |
*/ |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
20 |
|
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
21 |
#include "ns3/lte-rrc-sap.h" |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
22 |
|
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
23 |
namespace ns3 { |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
24 |
|
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
25 |
LteRrcSap::~LteRrcSap () |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
26 |
{ |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
27 |
} |
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
28 |
|
7127b2b9668f
fix compilation error with gcc-4.7
Nicola Baldo <nbaldo@cttc.es>
parents:
diff
changeset
|
29 |
} // namespace ns3 |