wxWidgets/docs/latex/wx/sistream.tex
Vadim Zeitlin a08f2b59fe fixed include header name
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-19 21:59:35 +00:00

36 lines
1.0 KiB
TeX

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Name: sistream.tex
%% Purpose: wxStringInputStream docs
%% Author: Vadim Zeitlin
%% Modified by:
%% Created: 2004-09-19
%% RCS-ID: $Id$
%% Copyright: (c) 2004 Vadim Zeitlin
%% License: wxWidgets licence
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{\class{wxStringInputStream}}\label{wxstringinputstream}
This class implements an input stream which reads data from a string. It
supports seeking.
\wxheading{Derived from}
\helpref{wxInputStream}{wxinputstream}
\wxheading{Include files}
<wx/sstream.h>
\latexignore{\rtfignore{\wxheading{Members}}}
\membersection{wxStringInputStream::wxStringInputStream}
\func{}{wxStringInputStream}{\param{const wxString\&}{ s}}
Creates a new read-only stream using the specified string. Note that the string
is copied by the stream so if the original string is modified after using this
constructor, changes to it are not reflected when reading from stream.