From 52dceb4159f9c423bed77cf72543734f32ce97e8 Mon Sep 17 00:00:00 2001 From: bemandawes Date: Thu, 26 May 2011 17:28:08 +0000 Subject: [PATCH] Add io library directories prior to moving bin_manip file to io git-svn-id: http://svn.boost.org/svn/boost/sandbox/endian@72186 b8fc166d-592f-0410-95f2-cb63ce0dd405 --- libs/io/doc/index.html | 67 +++++++++++++++++++++++++++++++++++++++++ libs/io/test/Jamfile.v2 | 26 ++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 libs/io/doc/index.html create mode 100644 libs/io/test/Jamfile.v2 diff --git a/libs/io/doc/index.html b/libs/io/doc/index.html new file mode 100644 index 0000000..4885739 --- /dev/null +++ b/libs/io/doc/index.html @@ -0,0 +1,67 @@ + + + +Boost I/O Library + + + + + + + + + + + + +
boost.png (6897 bytes)HomeLibrariesPeopleFAQMore
+ +

Boost Input/Output Library

+ + + + + + + + + + + + + + +
Header / DocsContents
+ <boost/io_fwd.hpp> + + Forward declaration header. +
+ <boost/io/ios_state.hpp>
+
documentation +
+ State-saving classes for various IOStream attributes. +
+ +

Rationale

+ +

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.

+ +
+ +

Revised: 26 Feb 2002

+ +

Copyright 2002 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>.)

+ + diff --git a/libs/io/test/Jamfile.v2 b/libs/io/test/Jamfile.v2 new file mode 100644 index 0000000..4b48bce --- /dev/null +++ b/libs/io/test/Jamfile.v2 @@ -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 +# .) +# +# See for the library's home page. + +test-suite "io" + : [ run ios_state_unit_test.cpp + ../../../libs/test/build//boost_unit_test_framework/static + : # args + : # input files + # : std::locale-support + ] + + [ run ios_state_test.cpp + ../../../libs/test/build//boost_test_exec_monitor/static + : # args + : # input files + # : std::locale-support + ] + + [ run quoted_manip_test.cpp ] + ;