⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 neighbordb.h

📁 This documentation is based on the following versions:- pre-release of the wimax model developed by
💻 H
字号:
/* This software was developed at the National Institute of Standards and * Technology by employees of the Federal Government in the course of * their official duties. Pursuant to title 17 Section 105 of the United * States Code this software is not subject to copyright protection and * is in the public domain. * NIST assumes no responsibility whatsoever for its use by other parties, * and makes no guarantees, expressed or implied, about its quality, * reliability, or any other characteristic. * <BR> * We would appreciate acknowledgement if the software is used. * <BR> * NIST ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND * DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING * FROM THE USE OF THIS SOFTWARE. * </PRE></P> * @author  rouil */#ifndef NEIGHBORDB_H#define NEIGHBORDB_H#include "neighborentry.h"#include "mac802_16pkt.h"/* This is the size of database allocated. Needs to be modified if  * a node could have more entries */#define DEFAULT_DB_SIZE 10/** * The class is used to store and manipulate the list  * of neighbors in a given node */class NeighborDB { public:  /**    * Constructor   */  NeighborDB ();  /**   * Destructor   */  ~NeighborDB ();  /**   * Add an entry in the database   * @param nb The neighbor to add   */  void addNeighbor (NeighborEntry *nb);  /**   * Remove the entry associated with the given node   * @param nbid The neighbor id   */  void removeNeighbor (int nbid);  /**   * Return the number of neighbor in the list   * @return the number of neighbor in the list   */  int getNbNeighbor ();  /**   * Return the entry associated with the given node   * @param nbid The neighbor id   * @return the entry for the given node or NULL   */  NeighborEntry * getNeighbor (int nbid);  /**   * Return a pointer to the list of all neighbors   * @return a pointer to the list of all neighbors   */  NeighborEntry ** getNeighbors (); protected: private:  /**   * Current number of neighbor   */  int nbentry_;  /**   * Array of neighbors   */  NeighborEntry **nbs_;  };#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -