IMP
2.2.1
The Integrative Modeling Platform
IMP Mainpage
All IMP Modules
Related Pages
Modules
Namespaces
Classes
Files
Examples
Indexes
File List
File Members
base/vector_property_map.h
Go to the documentation of this file.
1
/**
2
* \file IMP/base/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-2014 IMP Inventors. All rights reserved.
10
*/
11
12
#ifndef IMPBASE_VECTOR_PROPERTY_MAP_H
13
#define IMPBASE_VECTOR_PROPERTY_MAP_H
14
15
#include <IMP/base/base_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
/* IMPBASE_VECTOR_PROPERTY_MAP_H */