Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/test/test_exec_monitor.hpp @ 44

Last change on this file since 44 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.8 KB
Line 
1//  (C) Copyright Gennadiy Rozental 2001-2005.
2//  Distributed under the Boost Software License, Version 1.0.
3//  (See accompanying file LICENSE_1_0.txt or copy at
4//  http://www.boost.org/LICENSE_1_0.txt)
5
6//  See http://www.boost.org/libs/test for the library home page.
7//
8//  File        : $RCSfile: test_exec_monitor.hpp,v $
9//
10//  Version     : $Revision: 1.3 $
11//
12//  Description : Entry point for the end user into the Test Execution Monitor.
13// ***************************************************************************
14
15#ifndef BOOST_TEST_EXEC_MONITOR_HPP_071894GER
16#define BOOST_TEST_EXEC_MONITOR_HPP_071894GER
17
18// Boost.Test
19#include <boost/test/test_tools.hpp>
20
21//____________________________________________________________________________//
22
23// ************************************************************************** //
24// **************                 Auto Linking                 ************** //
25// ************************************************************************** //
26
27// Automatically link to the correct build variant where possible.
28#if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_TEST_NO_LIB) && \
29    !defined(BOOST_TEST_SOURCE) && !defined(BOOST_TEST_INCLUDED)
30
31#  define BOOST_LIB_NAME boost_test_exec_monitor
32#  include <boost/config/auto_link.hpp>
33
34#endif  // auto-linking disabled
35
36// ***************************************************************************
37//  Revision History :
38// 
39//  $Log: test_exec_monitor.hpp,v $
40//  Revision 1.3  2006/03/19 11:45:26  rogeeff
41//  main function renamed for consistancy
42//
43//  Revision 1.2  2006/02/07 16:15:20  rogeeff
44//  BOOST_TEST_INCLUDED guard were missing
45//
46//  Revision 1.1  2005/12/14 05:42:08  rogeeff
47//  components primary headers
48//
49// ***************************************************************************
50
51#endif // BOOST_TEST_EXEC_MONITOR_HPP_071894GER
Note: See TracBrowser for help on using the repository browser.