$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62486 - sandbox/SOC/2010/process/boost/process
From: boris_at_[hidden]
Date: 2010-06-06 10:34:28
Author: bschaeling
Date: 2010-06-06 10:34:28 EDT (Sun, 06 Jun 2010)
New Revision: 62486
URL: http://svn.boost.org/trac/boost/changeset/62486
Log:
Added all.hpp
Added:
   sandbox/SOC/2010/process/boost/process/all.hpp   (contents, props changed)
Added: sandbox/SOC/2010/process/boost/process/all.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/process/boost/process/all.hpp	2010-06-06 10:34:28 EDT (Sun, 06 Jun 2010)
@@ -0,0 +1,43 @@
+//
+// Boost.Process
+// ~~~~~~~~~~~~~
+//
+// Copyright (c) 2006, 2007 Julio M. Merino Vidal
+// Copyright (c) 2008, 2009 Boris Schaeling
+// Copyright (c) 2010 Felipe Tanus, Boris Schaeling
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+//
+
+/** 
+ * \file boost/process/all.hpp 
+ * 
+ * Convenience header that includes all other Boost.Process public header 
+ * files. It is important to note that those headers that are specific to 
+ * a given platform are only included if the library is being used in that 
+ * same platform. 
+ */ 
+
+#ifndef BOOST_PROCESS_ALL_HPP 
+#define BOOST_PROCESS_ALL_HPP 
+
+#include <boost/process/config.hpp> 
+
+#if defined(BOOST_POSIX_API) 
+#elif defined(BOOST_WINDOWS_API) 
+#else 
+#  error "Unsupported platform." 
+#endif 
+
+#  include <boost/process/child.hpp> 
+#  include <boost/process/context.hpp> 
+#  include <boost/process/environment.hpp> 
+#  include <boost/process/operations.hpp> 
+#  include <boost/process/pistream.hpp> 
+#  include <boost/process/postream.hpp> 
+#  include <boost/process/process.hpp> 
+#  include <boost/process/status.hpp> 
+#  include <boost/process/stream_behavior.hpp> 
+
+#endif