File indexing completed on 2025-11-04 10:06:09
0001 
0002 
0003 
0004 
0005 
0006 
0007 
0008 
0009 
0010 
0011 
0012 
0013 
0014 
0015 #ifndef BOOST_TEST_UTILS_RUNTIME_FWD_HPP
0016 #define BOOST_TEST_UTILS_RUNTIME_FWD_HPP
0017 
0018 
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 
0024 #include <boost/shared_ptr.hpp>
0025 
0026 
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 } 
0043 } 
0044 
0045 #endif