Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:52:42

0001 //  (C) Copyright Gennadiy Rozental 2001.
0002 //  Distributed under the Boost Software License, Version 1.0.
0003 //  (See accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 //  See http://www.boost.org/libs/test for the library home page.
0007 //
0008 //  File        : $RCSfile$
0009 //
0010 //  Version     : $Revision$
0011 //
0012 //  Description : runtime parameters forward declaration
0013 // ***************************************************************************
0014 
0015 #ifndef BOOST_TEST_UTILS_RUNTIME_FWD_HPP
0016 #define BOOST_TEST_UTILS_RUNTIME_FWD_HPP
0017 
0018 // Boost.Test
0019 #include <boost/test/detail/config.hpp>
0020 #include <boost/test/utils/basic_cstring/basic_cstring.hpp>
0021 #include <boost/test/utils/basic_cstring/io.hpp> // operator<<(boost::runtime::cstring)
0022 
0023 // Boost
0024 #include <boost/shared_ptr.hpp>
0025 
0026 // STL
0027 #include <map>
0028 
0029 namespace boost {
0030 namespace runtime {
0031 
0032 typedef unit_test::const_string     cstring;
0033 
0034 class argument;
0035 typedef shared_ptr<argument> argument_ptr;
0036 
0037 template<typename T> class typed_argument;
0038 
0039 class basic_param;
0040 typedef shared_ptr<basic_param> basic_param_ptr;
0041 
0042 } // namespace runtime
0043 } // namespace boost
0044 
0045 #endif // BOOST_TEST_UTILS_RUNTIME_FWD_HPP