$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r72186 - in sandbox/endian: boost/io boost/io/detail libs/io libs/io/doc libs/io/test
From: bdawes_at_[hidden]
Date: 2011-05-26 13:28:09
Author: bemandawes
Date: 2011-05-26 13:28:08 EDT (Thu, 26 May 2011)
New Revision: 72186
URL: http://svn.boost.org/trac/boost/changeset/72186
Log:
Add io library directories prior to moving bin_manip file to io
Added:
   sandbox/endian/boost/io/
   sandbox/endian/boost/io/detail/
   sandbox/endian/libs/io/
   sandbox/endian/libs/io/doc/
   sandbox/endian/libs/io/doc/index.html   (contents, props changed)
   sandbox/endian/libs/io/test/
   sandbox/endian/libs/io/test/Jamfile.v2   (contents, props changed)
Added: sandbox/endian/libs/io/doc/index.html
==============================================================================
--- (empty file)
+++ sandbox/endian/libs/io/doc/index.html	2011-05-26 13:28:08 EDT (Thu, 26 May 2011)
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<html>
+<head>
+<title>Boost I/O Library</title>
+</head>
+
+<body bgcolor="white" text="black">
+<table border="1" bgcolor="teal" cellpadding="2">
+	<tr>
+		<td bgcolor="white"><img src="../../../boost.png"
+			alt="boost.png (6897 bytes)" width="277"
+			height="86"></td>
+		<td><a href="../../../index.htm"><font face="Arial"
+			color="white"><big>Home</big></font></a></td>
+		<td><a href="../../libraries.htm"><font face="Arial"
+			color="white"><big>Libraries</big></font></a></td>
+		<td><a href="http://www.boost.org/people/people.htm"><font face="Arial"
+			color="white"><big>People</big></font></a></td>
+		<td><a href="http://www.boost.org/more/faq.htm"><font face="Arial"
+			color="white"><big>FAQ</big></font></a></td>
+		<td><a href="../../../more/index.htm"><font face="Arial"
+			color="white"><big>More</big></font></a></td>
+	</tr>
+</table>
+
+<h1>Boost Input/Output Library</h1>
+
+<table border="1" cellpadding="5" align="center">
+	<tr>
+		<th>Header / Docs</th>
+		<th>Contents</th>
+	</tr>
+	<tr>
+		<td align="center">
+			<code><boost/io_fwd.hpp></code>
+		</td>
+		<td valign="top">
+			Forward declaration header.
+		</td>
+	</tr>
+	<tr>
+		<td align="center">
+			<code><boost/io/ios_state.hpp></code><br>
+			<br>documentation
+		</td>
+		<td valign="top">
+			State-saving classes for various IOStream attributes.
+		</td>
+	</tr>
+</table>
+
+<h2>Rationale</h2>
+
+<p>The I/O sub-library of Boost helps segregate the large number of
+Boost headers.  This sub-library should contain various items to use
+with/for the standard I/O library.</p>
+
+<hr>
+
+<p>Revised: 26 Feb 2002</p>
+
+<p>Copyright 2002 Daryle Walker.  Use, modification, and distribution are
+subject to the Boost Software License, Version 1.0.  (See accompanying file <a
+href="../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or a copy at <<a
+href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt>>.)</p>
+</body>
+</html>
Added: sandbox/endian/libs/io/test/Jamfile.v2
==============================================================================
--- (empty file)
+++ sandbox/endian/libs/io/test/Jamfile.v2	2011-05-26 13:28:08 EDT (Thu, 26 May 2011)
@@ -0,0 +1,26 @@
+#  Boost.IO Library test Jamfile
+#
+#  Copyright 2003 Daryle Walker.  Use, modification, and distribution
+#  are subject to the Boost Software License, Version 1.0.  (See
+#  accompanying file LICENSE_1_0.txt or a copy at
+#  <http://www.boost.org/LICENSE_1_0.txt>.)
+#
+#  See <http://www.boost.org/libs/io/> for the library's home page.
+
+test-suite "io"
+   :    [  run ios_state_unit_test.cpp 
+                ../../../libs/test/build//boost_unit_test_framework/<link>static
+              : # args
+              : # input files
+              # : std::locale-support
+        ]
+
+        [ run ios_state_test.cpp 
+                ../../../libs/test/build//boost_test_exec_monitor/<link>static
+              : # args
+              : # input files
+              # : std::locale-support
+        ]
+        
+        [ run quoted_manip_test.cpp ]
+  ;