epoc32/include/stdapis/boost/archive/detail/auto_link_archive.hpp
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 #ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
     2 #define BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
     3 
     4 // MS compatible compilers support #pragma once
     5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
     6 # pragma once
     7 #endif
     8 
     9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
    10 //  auto_link_archive.hpp
    11 //
    12 //  © Copyright Robert Ramey 2004
    13 //  Use, modification, and distribution is subject to the Boost Software
    14 //  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    15 //  http://www.boost.org/LICENSE_1_0.txt)
    16 
    17 //  See library home page at http://www.boost.org/libs/serialization
    18 
    19 //----------------------------------------------------------------------------// 
    20 
    21 // This header implements separate compilation features as described in
    22 // http://www.boost.org/more/separate_compilation.html
    23 
    24 //  enable automatic library variant selection  ------------------------------// 
    25 /*
    26  * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
    27 */
    28 #include <boost/archive/detail/decl.hpp>
    29 
    30 #if !defined(BOOST_ARCHIVE_SOURCE) \
    31 && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB)
    32 
    33 // Set the name of our library, this will get undef'ed by auto_link.hpp
    34 // once it's done with it:
    35 //
    36 #define BOOST_LIB_NAME boost_serialization
    37 //
    38 // If we're importing code from a dll, then tell auto_link.hpp about it:
    39 //
    40 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK)
    41 #  define BOOST_DYN_LINK
    42 #endif
    43 //
    44 // And include the header that does the work:
    45 //
    46 #ifndef __SYMBIAN32__
    47 #include <boost/config/auto_link.hpp>
    48 #endif  // auto-linking disabled
    49 #endif
    50 
    51 #endif // ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP