src/devices/wifi/capability-information.h
author Timo Bingmann <timo.bingmann@student.kit.edu>
Thu, 28 May 2009 18:15:23 +0200
changeset 4463 67d6567eae57
parent 1939 40af0232df83
permissions -rw-r--r--
increment precision of PI

/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2006 INRIA
 *
 * 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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
 */
#ifndef CAPABILITY_INFORMATION_H
#define CAPABILITY_INFORMATION_H

#include <stdint.h>
#include "ns3/buffer.h"

namespace ns3 {

class CapabilityInformation 
{
public:
  CapabilityInformation ();

  void SetEss (void);
  void SetIbss (void);

  bool IsEss (void) const;
  bool IsIbss (void) const;

  uint32_t GetSerializedSize (void) const;
  Buffer::Iterator Serialize (Buffer::Iterator start) const;
  Buffer::Iterator Deserialize (Buffer::Iterator start);
private:
  bool Is (uint8_t n) const;
  void Set (uint8_t n);
  void Clear (uint8_t n);
  uint16_t m_capability;
};

} // namespace ns3

#endif /* CAPABILITY_INFORMATION_H */