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

Revision 857, 1.5 KB checked in by igarcia, 18 years ago (diff)
Line 
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
21namespace boost {
22
23namespace BOOST_RT_PARAM_NAMESPACE {
24
25namespace environment {
26
27namespace rt_env_detail {
28
29struct variable_data;
30
31variable_data&  new_var_record( cstring var_name );
32variable_data*  find_var_record( cstring var_name );
33
34cstring         sys_read_var( cstring var_name );
35void            sys_write_var( cstring var_name, format_stream& var_value );
36
37}
38
39class variable_base;
40template <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
Note: See TracBrowser for help on using the repository browser.