2004-09-19 21:26:45 +00:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%% 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}
|
|
|
|
|
2004-09-19 21:59:35 +00:00
|
|
|
<wx/sstream.h>
|
2004-09-19 21:26:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
\latexignore{\rtfignore{\wxheading{Members}}}
|
|
|
|
|
2004-09-23 15:41:43 +00:00
|
|
|
\membersection{wxStringInputStream::wxStringInputStream}\label{wxstringinputstreamctor}
|
2004-09-19 21:26:45 +00:00
|
|
|
|
|
|
|
\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.
|
|
|
|
|