]>
Commit | Line | Data |
---|---|---|
121fa06a VZ |
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 | |
8795498c | 9 | %% License: wxWindows licence |
121fa06a VZ |
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 | ||
7376079d VZ |
19 | \helpref{wxInputStream}{wxinputstream}\\ |
20 | \helpref{wxStreamBase}{wxstreambase} | |
121fa06a VZ |
21 | |
22 | \wxheading{Include files} | |
23 | ||
a08f2b59 | 24 | <wx/sstream.h> |
121fa06a | 25 | |
a7af285d VZ |
26 | \wxheading{Library} |
27 | ||
28 | \helpref{wxBase}{librarieslist} | |
29 | ||
121fa06a VZ |
30 | |
31 | \latexignore{\rtfignore{\wxheading{Members}}} | |
32 | ||
08f1d438 | 33 | \membersection{wxStringInputStream::wxStringInputStream}\label{wxstringinputstreamctor} |
121fa06a VZ |
34 | |
35 | \func{}{wxStringInputStream}{\param{const wxString\&}{ s}} | |
36 | ||
37 | Creates a new read-only stream using the specified string. Note that the string | |
38 | is copied by the stream so if the original string is modified after using this | |
39 | constructor, changes to it are not reflected when reading from stream. | |
40 |