source: NonGTP/Boost/boost/test/utils/runtime/env/modifier.hpp @ 857

Revision 857, 1.7 KB checked in by igarcia, 18 years ago (diff)
Line 
1//  (C) Copyright Gennadiy Rozental 2005.
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
6//  See http://www.boost.org/libs/test for the library home page.
7//
8//  File        : $RCSfile: modifier.hpp,v $
9//
10//  Version     : $Revision: 1.1 $
11//
12//  Description : defines variable modifiers
13// ***************************************************************************
14
15#ifndef BOOST_RT_ENV_MODIFIER_HPP_062604GER
16#define BOOST_RT_ENV_MODIFIER_HPP_062604GER
17
18// Boost.Runtime.Parameter
19#include <boost/test/utils/runtime/config.hpp>
20
21// Boost.Test
22#include <boost/test/utils/named_params.hpp>
23
24namespace boost {
25
26namespace BOOST_RT_PARAM_NAMESPACE {
27
28namespace environment {
29
30// ************************************************************************** //
31// **************         environment variable modifiers       ************** //
32// ************************************************************************** //
33
34namespace {
35
36nfp::typed_keyword<cstring,struct global_id_t>   global_id;
37nfp::keyword<struct default_value_t>             default_value;
38nfp::keyword<struct interpreter_t>               interpreter;
39
40} // local namespace
41} // namespace environment
42
43} // namespace BOOST_RT_PARAM_NAMESPACE
44
45} // namespace boost
46
47// ************************************************************************** //
48//   Revision History:
49//
50//   $Log: modifier.hpp,v $
51//   Revision 1.1  2005/04/12 06:42:43  rogeeff
52//   Runtime.Param library initial commit
53//
54// ************************************************************************** //
55
56#endif // BOOST_RT_ENV_MODIFIER_HPP_062604GER
Note: See TracBrowser for help on using the repository browser.