A Discrete-Event Network Simulator
API
lr-wpan-lqi-tag.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013 Fraunhofer FKIE
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:
19  * Sascha Alexander Jopen <jopen@cs.uni-bonn.de>
20  */
21 #ifndef LR_WPAN_LQI_TAG_H
22 #define LR_WPAN_LQI_TAG_H
23 
24 #include <ns3/tag.h>
25 
26 namespace ns3 {
27 
37 class LrWpanLqiTag : public Tag
38 {
39 public:
45  static TypeId GetTypeId (void);
46 
47  virtual TypeId GetInstanceTypeId (void) const;
48 
52  LrWpanLqiTag (void);
53 
58  LrWpanLqiTag (uint8_t lqi);
59 
60  virtual uint32_t GetSerializedSize (void) const;
61  virtual void Serialize (TagBuffer i) const;
62  virtual void Deserialize (TagBuffer i);
63  virtual void Print (std::ostream &os) const;
64 
70  void Set (uint8_t lqi);
71 
77  uint8_t Get (void) const;
78 private:
82  uint8_t m_lqi;
83 };
84 
85 
86 }
87 #endif /* LR_WPAN_LQI_TAG_H */
Represent the LQI (Link Quality Estination).
LrWpanLqiTag(void)
Create a LrWpanLqiTag with the default LQI 0.
virtual void Serialize(TagBuffer i) const
static TypeId GetTypeId(void)
Get the type ID.
void Set(uint8_t lqi)
Set the LQI to the given value.
uint8_t m_lqi
The current LQI value of the tag.
virtual void Deserialize(TagBuffer i)
virtual uint32_t GetSerializedSize(void) const
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
uint8_t Get(void) const
Get the LQI value.
virtual void Print(std::ostream &os) const
read and write tag data
Definition: tag-buffer.h:52
tag a set of bytes in a packet
Definition: tag.h:37
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.