blob: b8696057e7904156d83159bf1bf9b99d525bdbd3 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (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
6// See http://www.boost.org/libs/test for the library home page.
7//
8// File : $RCSfile$
9//
10// Version : $Revision: 54633 $
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#ifdef UNDER_CE
19#error Windows CE does not support environment variables.
20#endif
21
22// Boost.Runtime.Parameter
23#include <ndnboost/test/utils/runtime/config.hpp>
24
25namespace ndnboost {
26
27namespace BOOST_RT_PARAM_NAMESPACE {
28
29namespace environment {
30
31class variable_base;
32variable_base var( cstring var_name );
33
34namespace rt_env_detail {
35
36struct variable_data;
37
38variable_data& new_var_record( cstring var_name );
39variable_data* find_var_record( cstring var_name );
40
41cstring sys_read_var( cstring var_name );
42void sys_write_var( cstring var_name, format_stream& var_value );
43
44}
45
46template <typename T> class variable;
47
48} // namespace environment
49
50} // namespace BOOST_RT_PARAM_NAMESPACE
51
52} // namespace ndnboost
53
54#endif // BOOST_RT_ENV_FWD_HPP_062604GER