00001 // 00002 // Boost.Process 00003 // ~~~~~~~~~~~~~ 00004 // 00005 // Copyright (c) 2006, 2007 Julio M. Merino Vidal 00006 // Copyright (c) 2008 Boris Schaeling 00007 // 00008 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00009 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00010 // 00011 00018 #ifndef BOOST_PROCESS_ENVIRONMENT_HPP 00019 #define BOOST_PROCESS_ENVIRONMENT_HPP 00020 00021 #include <string> 00022 #include <map> 00023 00024 namespace boost { 00025 namespace process { 00026 00045 typedef std::map<std::string, std::string> environment; 00046 00047 } 00048 } 00049 00050 #endif