Add missing header
This commit is contained in:
parent
3196eb75a7
commit
0159a5c36b
1 changed files with 14 additions and 0 deletions
14
programs/light_client/BoostMultiIndex.hpp
Normal file
14
programs/light_client/BoostMultiIndex.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <boost/multi_index_container.hpp>
|
||||
#include <boost/multi_index/member.hpp>
|
||||
#include <boost/multi_index/ordered_index.hpp>
|
||||
#include <boost/multi_index/hashed_index.hpp>
|
||||
#include <boost/multi_index/mem_fun.hpp>
|
||||
|
||||
using boost::multi_index_container;
|
||||
using boost::multi_index::indexed_by;
|
||||
using boost::multi_index::hashed_unique;
|
||||
using boost::multi_index::tag;
|
||||
using boost::multi_index::const_mem_fun;
|
||||
using boost::multi_index::ordered_unique;
|
||||
Loading…
Reference in a new issue