Jeff Thompson | 86b6d64 | 2013-10-17 15:01:56 -0700 | [diff] [blame] | 1 | // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com) |
| 2 | // (C) Copyright 2003-2007 Jonathan Turkanis |
| 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) |
| 5 | |
| 6 | // See http://www.boost.org/libs/iostreams for documentation. |
| 7 | |
| 8 | // Adapted from http://www.boost.org/more/separate_compilation.html, by |
| 9 | // John Maddock. |
| 10 | |
| 11 | #ifndef NDNBOOST_IOSTREAMS_DETAIL_CONFIG_DYN_LINK_HPP_INCLUDED |
| 12 | #define NDNBOOST_IOSTREAMS_DETAIL_CONFIG_DYN_LINK_HPP_INCLUDED |
| 13 | |
| 14 | #if defined(_MSC_VER) && (_MSC_VER >= 1020) |
| 15 | # pragma once |
| 16 | #endif |
| 17 | |
| 18 | #include <ndnboost/config.hpp> |
| 19 | #include <ndnboost/detail/workaround.hpp> |
| 20 | |
| 21 | //------------------Enable dynamic linking on windows-------------------------// |
| 22 | |
| 23 | #ifdef NDNBOOST_HAS_DECLSPEC |
| 24 | # if defined(NDNBOOST_ALL_DYN_LINK) || defined(NDNBOOST_IOSTREAMS_DYN_LINK) |
| 25 | # ifdef NDNBOOST_IOSTREAMS_SOURCE |
| 26 | # define NDNBOOST_IOSTREAMS_DECL __declspec(dllexport) |
| 27 | # else |
| 28 | # define NDNBOOST_IOSTREAMS_DECL __declspec(dllimport) |
| 29 | # endif |
| 30 | # endif |
| 31 | #endif |
| 32 | |
| 33 | #ifndef NDNBOOST_IOSTREAMS_DECL |
| 34 | # define NDNBOOST_IOSTREAMS_DECL |
| 35 | #endif |
| 36 | |
| 37 | #endif // #ifndef NDNBOOST_IOSTREAMS_DETAIL_CONFIG_DYN_LINK_HPP_INCLUDED |