1 | // (C) Copyright Gennadiy Rozental 2005.
|
---|
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 |
|
---|
6 | // See http://www.boost.org/libs/test for the library home page.
|
---|
7 | //
|
---|
8 | // File : $RCSfile: fwd.hpp,v $
|
---|
9 | //
|
---|
10 | // Version : $Revision: 1.1 $
|
---|
11 | //
|
---|
12 | // Description : environment subsystem forward declarations
|
---|
13 | // ***************************************************************************
|
---|
14 |
|
---|
15 | #ifndef BOOST_RT_ENV_FWD_HPP_062604GER
|
---|
16 | #define BOOST_RT_ENV_FWD_HPP_062604GER
|
---|
17 |
|
---|
18 | // Boost.Runtime.Parameter
|
---|
19 | #include <boost/test/utils/runtime/config.hpp>
|
---|
20 |
|
---|
21 | namespace boost {
|
---|
22 |
|
---|
23 | namespace BOOST_RT_PARAM_NAMESPACE {
|
---|
24 |
|
---|
25 | namespace environment {
|
---|
26 |
|
---|
27 | namespace rt_env_detail {
|
---|
28 |
|
---|
29 | struct variable_data;
|
---|
30 |
|
---|
31 | variable_data& new_var_record( cstring var_name );
|
---|
32 | variable_data* find_var_record( cstring var_name );
|
---|
33 |
|
---|
34 | cstring sys_read_var( cstring var_name );
|
---|
35 | void sys_write_var( cstring var_name, format_stream& var_value );
|
---|
36 |
|
---|
37 | }
|
---|
38 |
|
---|
39 | class variable_base;
|
---|
40 | template <typename T> class variable;
|
---|
41 |
|
---|
42 | } // namespace environment
|
---|
43 |
|
---|
44 | } // namespace BOOST_RT_PARAM_NAMESPACE
|
---|
45 |
|
---|
46 | } // namespace boost
|
---|
47 |
|
---|
48 | // ************************************************************************** //
|
---|
49 | // Revision History:
|
---|
50 | //
|
---|
51 | // $Log: fwd.hpp,v $
|
---|
52 | // Revision 1.1 2005/04/12 06:42:43 rogeeff
|
---|
53 | // Runtime.Param library initial commit
|
---|
54 | //
|
---|
55 | // ************************************************************************** //
|
---|
56 |
|
---|
57 | #endif // BOOST_RT_ENV_FWD_HPP_062604GER
|
---|