modifier.hpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // (C) Copyright Gennadiy Rozental 2005-2008.
  2. // Use, modification, and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at 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 : defines variable modifiers
  12. // ***************************************************************************
  13. #ifndef BOOST_RT_ENV_MODIFIER_HPP_062604GER
  14. #define BOOST_RT_ENV_MODIFIER_HPP_062604GER
  15. // Boost.Runtime.Parameter
  16. #include <boost/test/utils/runtime/config.hpp>
  17. // Boost.Test
  18. #include <boost/test/utils/named_params.hpp>
  19. namespace boost {
  20. namespace BOOST_RT_PARAM_NAMESPACE {
  21. namespace environment {
  22. // ************************************************************************** //
  23. // ************** environment variable modifiers ************** //
  24. // ************************************************************************** //
  25. namespace {
  26. nfp::typed_keyword<cstring,struct global_id_t> global_id;
  27. nfp::keyword<struct default_value_t> default_value;
  28. nfp::keyword<struct interpreter_t> interpreter;
  29. } // local namespace
  30. } // namespace environment
  31. } // namespace BOOST_RT_PARAM_NAMESPACE
  32. } // namespace boost
  33. #endif // BOOST_RT_ENV_MODIFIER_HPP_062604GER