Update of /cvsroot/boost/boost/libs/iostreams/doc/functions
In directory
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv19574/libs/iostreams/doc/functions
Modified Files:
compose.html imbue.html positioning.html restrict.html
tee.html
Log Message:
Added Kim Barrett's patches that merge the changes from 1.33.1 into cvs HEAD.
Index: compose.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/functions/compose.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- compose.html 12 Aug 2005 13:02:35 -0000 1.4
+++ compose.html 26 May 2007 12:42:43 -0000 1.5
@@ -30,7 +30,7 @@
</P>
<P>
- The class template <A HREF='#composite'><CODE>composite</CODE></A>
represents a Filter or Device which has been constructed in the above manner.
The function template <A HREF='#compose'><CODE>compose</CODE></A> is an <A
HREF='../../../../more/generic_programming.html#object_generator'
TARGET='top'>object generator</A> which given a pair of components returns an
appropriate instance of <CODE>composite</CODE>.
+ The function template <A HREF='#composite'><CODE>composite</CODE></A>
represents a Filter or Device which has been constructed in the above manner.
The function template <A HREF='#compose'><CODE>compose</CODE></A> is an <A
HREF='../../../../more/generic_programming.html#object_generator'
TARGET='_top'>object generator</A> which given a pair of components returns an
appropriate instance of <CODE>composite</CODE>.
</P>
<P>
Index: imbue.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/functions/imbue.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- imbue.html 12 Aug 2005 13:02:35 -0000 1.9
+++ imbue.html 26 May 2007 12:42:43 -0000 1.10
@@ -24,7 +24,7 @@
<H2>Description</H2>
<P>
- The function template <CODE>imbue</CODE> is invoked automatically by the
Iostreams library when the <CODE>std::locale</CODE> of a library stream or
stream buffer is set using <CODE>std::basic_ios::imbue</CODE> or
<CODE>std::basic_streambuf::pubimbue</CODE>. When the <CODE>std::locale</CODE>
of an instance of <A
HREF="../guide/generic_streams.html#stream_buffer"><CODE>stream_buffer</CODE></A>
or <A HREF="../guide/generic_streams.html#stream"><CODE>stream</CODE></A> is
set, <CODE>imbue</CODE> is invoked on the underlying instance of the policy
type; when the <CODE>std::locale</CODE> of a <A
HREF="../classes/filtering_streambuf.html"><CODE>filtering_streambuf</CODE></A>
or <A
HREF="../classes/filtering_streambuf.html"><CODE>filtering_stream</CODE></A> is
set, <CODE>imbue</CODE> is invoked on each Filter and Device in the underlying
chain.
+ The function template <CODE>imbue</CODE> is invoked automatically by the
Iostreams library when the <CODE>std::locale</CODE> of a library stream or
stream buffer is set using <CODE>std::basic_ios::imbue</CODE> or
<CODE>std::basic_streambuf::pubimbue</CODE>. When the <CODE>std::locale</CODE>
of an instance of <A
HREF="../guide/generic_streams.html#stream_buffer"><CODE>stream_buffer</CODE></A>
or <A HREF="../guide/generic_streams.html#stream"><CODE>stream</CODE></A> is
set, <CODE>imbue</CODE> is invoked on the underlying Device; when the
<CODE>std::locale</CODE> of a <A
HREF="../classes/filtering_streambuf.html"><CODE>filtering_streambuf</CODE></A>
or <A
HREF="../classes/filtering_streambuf.html"><CODE>filtering_stream</CODE></A> is
set, <CODE>imbue</CODE> is invoked on each Filter and Device in the underlying
chain.
</P>
<A NAME="headers"></A>
Index: positioning.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/functions/positioning.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- positioning.html 12 Aug 2005 13:02:35 -0000 1.3
+++ positioning.html 26 May 2007 12:42:43 -0000 1.4
@@ -58,7 +58,7 @@
<PRE CLASS="broken_ie"><SPAN CLASS="keyword">namespace</SPAN> boost { <SPAN
CLASS="keyword">namespace</SPAN> iostreams {
-<SPAN CLASS='keyword'>typedef</SPAN> <A CLASS='documented'
HREF='../../../integer/cstdint.htm' TARGET='top'>boost::intmax_t</A>
stream_offset;
+<SPAN CLASS='keyword'>typedef</SPAN> <A CLASS='documented'
HREF='../../../integer/cstdint.htm' TARGET='_top'>boost::intmax_t</A>
stream_offset;
std::streampos <A CLASS='documented'
HREF='#offset_to_position'>offset_to_position</A>(stream_offset n);
stream_offset <A CLASS='documented'
HREF='#position_to_offset'>position_to_offset</A>(std::streampos pos);
Index: restrict.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/functions/restrict.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- restrict.html 12 Aug 2005 13:02:35 -0000 1.3
+++ restrict.html 26 May 2007 12:42:43 -0000 1.4
@@ -26,7 +26,7 @@
<H2>Description</H2>
<P>
- Given a Filter or Device that provides access to a single character
sequence, we can construct a second Filter or Device which provides access to
contiguous subsequence of the the original sequence. This second Filter or
Device is called a <I>restriction</I> of the original device. Restrictions are
represented by instances of the class template <CODE>restriction</CODE>. The
function template <CODE>resrict</CODE> is an <A
HREF='../../../../more/generic_programming.html#object_generator'
TARGET='top'>object generator</A> which returns an appropriate instance of
<CODE>resriction</CODE> when passed a Filter or Device and a pair of values
indicating the endpoints of the restricted subsequence.
+ Given a Filter or Device that provides access to a single character
sequence, we can construct a second Filter or Device which provides access to
contiguous subsequence of the the original sequence. This second Filter or
Device is called a <I>restriction</I> of the original device. Restrictions are
represented by instances of the class template <CODE>restriction</CODE>. The
function template <CODE>resrict</CODE> is an <A
HREF='../../../../more/generic_programming.html#object_generator'
TARGET='_top'>object generator</A> which returns an appropriate instance of
<CODE>resriction</CODE> when passed a Filter or Device and a pair of values
indicating the endpoints of the restricted subsequence.
</P>
<P>
Index: tee.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/iostreams/doc/functions/tee.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- tee.html 12 Aug 2005 13:02:35 -0000 1.3
+++ tee.html 26 May 2007 12:42:43 -0000 1.4
@@ -30,7 +30,7 @@
</P>
<P>
- The overloaded function template <A HREF='#tee'><CODE>tee</CODE></A> is an
<A HREF='../../../../more/generic_programming.html#object_generator'
TARGET='top'>object generator</A> which given a Device or a pair of Sinks
returns an appropriate specialization of <CODE>tee_filter</CODE> or
<CODE>tee_device</CODE>.
+ The overloaded function template <A HREF='#tee'><CODE>tee</CODE></A> is an
<A HREF='../../../../more/generic_programming.html#object_generator'
TARGET='_top'>object generator</A> which given a Device or a pair of Sinks
returns an appropriate specialization of <CODE>tee_filter</CODE> or
<CODE>tee_device</CODE>.
</P>
<A NAME="headers"></A>
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs