Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/config/test/link/link_test.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 18 years ago

added boost

File size: 757 bytes
Line 
1//  (C) Copyright John Maddock 2003.
2//  Use, modification and distribution are subject to the
3//  Boost Software License, Version 1.0. (See accompanying file
4//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6//  See http://www.boost.org/libs/config for the most recent version.
7
8
9#define BOOST_CONFIG_SOURCE
10
11#include "link_test.hpp"
12
13bool BOOST_CONFIG_DECL check_options(
14                   bool m_dyn_link,
15                   bool m_dyn_rtl,
16                   bool m_has_threads,
17                   bool m_debug,
18                   bool m_stlp_debug)
19{
20   return (m_dyn_link == dyn_link) 
21      && (m_dyn_rtl == dyn_rtl)
22      && (m_has_threads == has_threads)
23      && (m_debug == debug)
24      && (m_stlp_debug == stl_debug);
25}
26
Note: See TracBrowser for help on using the repository browser.