user_interface_config.hpp 617 B

123456789101112131415161718192021222324
  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. /// \file detail/user_interface_config.hpp
  9. /// \brief General configuration directives
  10. #ifndef BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP
  11. #define BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP
  12. #if defined(_MSC_VER)
  13. #pragma once
  14. #endif
  15. #ifdef BOOST_BIMAP_DISABLE_SERIALIZATION
  16. #define BOOST_MULTI_INDEX_DISABLE_SERIALIZATION
  17. #endif
  18. #endif // BOOST_BIMAP_DETAIL_USER_INTERFACE_CONFIG_HPP