]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/sistream.tex
wxSTAY_ON_TOP is available on all 3 major platforms now, remove Windows-only note
[wxWidgets.git] / docs / latex / wx / sistream.tex
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 %% Name: sistream.tex
3 %% Purpose: wxStringInputStream docs
4 %% Author: Vadim Zeitlin
5 %% Modified by:
6 %% Created: 2004-09-19
7 %% RCS-ID: $Id$
8 %% Copyright: (c) 2004 Vadim Zeitlin
9 %% License: wxWindows licence
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12 \section{\class{wxStringInputStream}}\label{wxstringinputstream}
13
14 This class implements an input stream which reads data from a string. It
15 supports seeking.
16
17 \wxheading{Derived from}
18
19 \helpref{wxInputStream}{wxinputstream}
20
21 \wxheading{Include files}
22
23 <wx/sstream.h>
24
25
26 \latexignore{\rtfignore{\wxheading{Members}}}
27
28 \membersection{wxStringInputStream::wxStringInputStream}\label{wxstringinputstreamctor}
29
30 \func{}{wxStringInputStream}{\param{const wxString\&}{ s}}
31
32 Creates a new read-only stream using the specified string. Note that the string
33 is copied by the stream so if the original string is modified after using this
34 constructor, changes to it are not reflected when reading from stream.
35