123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_TEST_UTILS_RUNTIME_FWD_HPP
- #define BOOST_TEST_UTILS_RUNTIME_FWD_HPP
- #include <boost/test/detail/config.hpp>
- #include <boost/test/utils/basic_cstring/basic_cstring.hpp>
- #include <boost/test/utils/basic_cstring/io.hpp> // operator<<(boost::runtime::cstring)
- #include <boost/shared_ptr.hpp>
- #include <map>
- namespace boost {
- namespace runtime {
- typedef unit_test::const_string cstring;
- class argument;
- typedef shared_ptr<argument> argument_ptr;
- template<typename T> class typed_argument;
- class basic_param;
- typedef shared_ptr<basic_param> basic_param_ptr;
- }
- }
- #endif
|