git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32309 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TeX
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 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:     wxWindows 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}\label{wxstringinputstreamctor}
 | 
						|
 | 
						|
\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. 
 | 
						|
 |