Chris@16: // (C) Copyright Gennadiy Rozental 2005-2008. Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See http://www.boost.org/libs/test for the library home page. Chris@16: // Chris@16: // File : $RCSfile$ Chris@16: // Chris@101: // Version : $Revision$ Chris@16: // Chris@16: // Description : environment subsystem forward declarations Chris@16: // *************************************************************************** Chris@16: Chris@16: #ifndef BOOST_RT_ENV_FWD_HPP_062604GER Chris@16: #define BOOST_RT_ENV_FWD_HPP_062604GER Chris@16: Chris@16: #ifdef UNDER_CE Chris@16: #error Windows CE does not support environment variables. Chris@16: #endif Chris@16: Chris@16: // Boost.Runtime.Parameter Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: Chris@16: namespace BOOST_RT_PARAM_NAMESPACE { Chris@16: Chris@16: namespace environment { Chris@16: Chris@16: class variable_base; Chris@16: variable_base var( cstring var_name ); Chris@16: Chris@16: namespace rt_env_detail { Chris@16: Chris@16: struct variable_data; Chris@16: Chris@16: variable_data& new_var_record( cstring var_name ); Chris@16: variable_data* find_var_record( cstring var_name ); Chris@16: Chris@16: cstring sys_read_var( cstring var_name ); Chris@16: void sys_write_var( cstring var_name, format_stream& var_value ); Chris@16: Chris@16: } Chris@16: Chris@16: template class variable; Chris@16: Chris@16: } // namespace environment Chris@16: Chris@16: } // namespace BOOST_RT_PARAM_NAMESPACE Chris@16: Chris@16: } // namespace boost Chris@16: Chris@16: #endif // BOOST_RT_ENV_FWD_HPP_062604GER