blob: 10721fc79be291f10cdda1621996012abc96cdba [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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015#ifndef NDNBOOST_RT_ENV_FWD_HPP_062604GER
16#define NDNBOOST_RT_ENV_FWD_HPP_062604GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017
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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027namespace NDNBOOST_RT_PARAM_NAMESPACE {
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070028
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
Jeff Thompson3d613fd2013-10-15 15:39:04 -070050} // namespace NDNBOOST_RT_PARAM_NAMESPACE
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070051
52} // namespace ndnboost
53
Jeff Thompson3d613fd2013-10-15 15:39:04 -070054#endif // NDNBOOST_RT_ENV_FWD_HPP_062604GER