fwd.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // (C) Copyright Gennadiy Rozental 2005-2008.
  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. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. // File : $RCSfile$
  8. //
  9. // Version : $Revision: 49312 $
  10. //
  11. // Description : global framework level forward declaration
  12. // ***************************************************************************
  13. #ifndef BOOST_RT_FWD_HPP_062604GER
  14. #define BOOST_RT_FWD_HPP_062604GER
  15. // Boost.Runtime.Parameter
  16. #include <boost/test/utils/runtime/config.hpp>
  17. // Boost
  18. #include <boost/shared_ptr.hpp>
  19. namespace boost {
  20. namespace BOOST_RT_PARAM_NAMESPACE {
  21. class parameter;
  22. class argument;
  23. typedef shared_ptr<argument> argument_ptr;
  24. typedef shared_ptr<argument const> const_argument_ptr;
  25. template<typename T> class value_interpreter;
  26. template<typename T> class typed_argument;
  27. } // namespace BOOST_RT_PARAM_NAMESPACE
  28. } // namespace boost
  29. #endif // BOOST_RT_FWD_HPP_062604GER