| 1 | // Boost.Bimap |
| 2 | // |
| 3 | // Copyright (c) 2006-2007 Matias Capeletto |
| 4 | // |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | |
| 9 | /// \file detail/user_interface_config.hpp |
| 10 | /// \brief General configuration directives |
| 11 | |
| 12 | |
| 13 | #ifndef BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP |
| 14 | #define BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP |
| 15 | |
| 16 | #if defined(_MSC_VER) |
| 17 | #pragma once |
| 18 | #endif |
| 19 | |
| 20 | #ifdef BOOST_BIMAP_DISABLE_SERIALIZATION |
| 21 | #define BOOST_MULTI_INDEX_DISABLE_SERIALIZATION |
| 22 | #endif |
| 23 | |
| 24 | #endif // BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP |
| 25 | |