parameter.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 : abstract interface for the formal parameter
  12. // ***************************************************************************
  13. #ifndef BOOST_RT_PARAMETER_HPP_062604GER
  14. #define BOOST_RT_PARAMETER_HPP_062604GER
  15. // Boost.Runtime.Parameter
  16. #include <boost/test/utils/runtime/config.hpp>
  17. namespace boost {
  18. namespace BOOST_RT_PARAM_NAMESPACE {
  19. // ************************************************************************** //
  20. // ************** runtime::parameter ************** //
  21. // ************************************************************************** //
  22. class parameter {
  23. public:
  24. virtual ~parameter() {}
  25. };
  26. } // namespace BOOST_RT_PARAM_NAMESPACE
  27. } // namespace boost
  28. #endif // BOOST_RT_PARAMETER_HPP_062604GER