#include "common.hpp"
#include "map-entry.hpp"
#include <iostream>
#include <list>
#include <boost/cstdint.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/mem_fun.hpp>
#include <boost/multi_index/tag.hpp>
Go to the source code of this file.
|
| nlsr |
| Copyright (c) 2014-2017, The University of Memphis, Regents of the University of California, Arizona Board of Regents.
|
|
| nlsr::detail |
|
|
using | nlsr::detail::entryContainer = multi_index_container< MapEntry, indexed_by< hashed_unique< tag< byRouterName >, const_mem_fun< MapEntry, const ndn::Name &,&MapEntry::getRouter >, std::hash< ndn::Name >>, hashed_unique< tag< byMappingNumber >, const_mem_fun< MapEntry, int32_t,&MapEntry::getMappingNumber >> > > |
|