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

Unified Diff: src/lte/model/lte-radio-bearer-tag.h

Issue 315450043: LTE module corrections for doxygen warnings (Closed)
Patch Set: Created 7 years, 2 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
« no previous file with comments | « src/lte/model/lte-radio-bearer-info.h ('k') | src/lte/model/lte-rlc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lte/model/lte-radio-bearer-tag.h
===================================================================
--- a/src/lte/model/lte-radio-bearer-tag.h
+++ b/src/lte/model/lte-radio-bearer-tag.h
@@ -34,6 +34,10 @@
class LteRadioBearerTag : public Tag
{
public:
+ /**
+ * \brief Get the type ID.
+ * \return the object TypeId
+ */
static TypeId GetTypeId (void);
virtual TypeId GetInstanceTypeId (void) const;
@@ -79,14 +83,29 @@
virtual uint32_t GetSerializedSize () const;
virtual void Print (std::ostream &os) const;
+ /**
+ * Get RNTI function
+ *
+ * \returns RNTI
+ */
uint16_t GetRnti (void) const;
+ /**
+ * Get LCID function
+ *
+ * \returns LCID
+ */
uint8_t GetLcid (void) const;
+ /**
+ * Get layer function
+ *
+ * \returns layer
+ */
uint8_t GetLayer (void) const;
private:
- uint16_t m_rnti;
- uint8_t m_lcid;
- uint8_t m_layer;
+ uint16_t m_rnti; ///< RNTI
+ uint8_t m_lcid; ///< LCID
+ uint8_t m_layer; ///< layer
};
« no previous file with comments | « src/lte/model/lte-radio-bearer-info.h ('k') | src/lte/model/lte-rlc.h » ('j') | no next file with comments »

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