Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1136)

Unified Diff: src/devices/lte/rlc-entity.cc

Issue 1866042: LTE module - Giuseppe Piro
Patch Set: LTE module Created 13 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/devices/lte/rlc-entity.cc
===================================================================
new file mode 100755
--- /dev/null
+++ b/src/devices/lte/rlc-entity.cc
@@ -0,0 +1,70 @@
+/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
+/*
+ * Copyright (c) 2010 TELEMATICS LAB, DEE - Politecnico di Bari
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation;
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Author: Giuseppe Piro <g.piro@poliba.it>
+ */
+
+
+#include "rlc-entity.h"
+#include <ns3/log.h>
+#include <ns3/pointer.h>
+#include <ns3/packet.h>
+
+NS_LOG_COMPONENT_DEFINE ("RlcEntity");
+
+namespace ns3 {
+
+
+NS_OBJECT_ENSURE_REGISTERED (RlcEntity);
+
+TypeId RlcEntity::GetTypeId (void)
+{
+ static TypeId tid = TypeId ("ns3::RlcEntity")
+ .SetParent<Object> ();
+ return tid;
+}
+
+
+RlcEntity::RlcEntity (RlcEntity::RlcMode mode)
+ : m_rlcMode (mode)
+{
+}
+
+RlcEntity::RlcEntity ()
+ : m_rlcMode (RlcEntity::RLC_MODE_TM)
+{
+}
+
+RlcEntity::~RlcEntity ()
+{
+}
+
+
+void
+RlcEntity::SetRlcMode (RlcEntity::RlcMode mode)
+{
+ m_rlcMode = mode;
+}
+
+
+RlcEntity::RlcMode
+RlcEntity::GetRlcMode (void)
+{
+ return m_rlcMode;
+}
+
+} // namespace ns3

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b