home
about
news
download
doc
source
systems
tests
bugs
contact
IMP Reference Guide
2.14.0
The Integrative Modeling Platform
IMP Manual
Reference Guide
Tutorial Index
Modules
Classes
Examples
include
IMP
version 2.14.0
vector_property_map.h
Go to the documentation of this file.
1
/**
2
* \file IMP/vector_property_map.h
3
* \brief Include the correct headers to get the boost vector_property_map
4
*
5
* The location of the definition of boost::vector_property_map has changed
6
* in the boost versions supported by \imp. This header makes sure the correct
7
* file is included.
8
*
9
* Copyright 2007-2020 IMP Inventors. All rights reserved.
10
*/
11
12
#ifndef IMPKERNEL_VECTOR_PROPERTY_MAP_H
13
#define IMPKERNEL_VECTOR_PROPERTY_MAP_H
14
15
#include <IMP/kernel_config.h>
16
#include <boost/version.hpp>
17
#if BOOST_VERSION > 103900
18
#include <boost/property_map/property_map.hpp>
19
#else
20
#include <boost/property_map.hpp>
21
#include <boost/vector_property_map.hpp>
22
#endif
23
24
#endif
/* IMPKERNEL_VECTOR_PROPERTY_MAP_H */