]>
Commit | Line | Data |
---|---|---|
e2cad352 GL |
1 | % ----------------------------------------------------------------------------- |
2 | % wxFileInputStream | |
3 | % ----------------------------------------------------------------------------- | |
4 | \section{\class{wxFileInputStream}}\label{wxfileinputstream} | |
5 | ||
6 | \wxheading{Derived from} | |
7 | ||
8 | \helpref{wxInputStream}{wxinputstream} | |
9 | ||
10 | \wxheading{See also} | |
11 | ||
12 | \helpref{wxStreamBuffer}{wxstreamBuffer} | |
13 | ||
14 | % ---------- | |
15 | % Members | |
16 | % ---------- | |
17 | \latexignore{\rtfignore{\wxheading{Members}}} | |
18 | ||
19 | \membersection{wxFileInputStream::wxFileInputStream} | |
20 | ||
4dba84be | 21 | \func{}{wxFileInputStream}{\param{const wxString\&}{ ifileName}} |
e2cad352 GL |
22 | |
23 | Opens the specified file using its \it{ifilename} name in read-only mode. | |
24 | ||
4dba84be | 25 | \func{}{wxFileInputStream}{\param{wxFile\&}{ file}} |
e2cad352 GL |
26 | |
27 | Initializes a file stream in read-only mode using the file I/O object \it{file}. | |
28 | ||
4dba84be | 29 | \func{}{wxFileInputStream}{\param{int}{ fd}} |
e2cad352 GL |
30 | |
31 | Initializes a file stream in read-only mode using the specified file descriptor. | |
32 | ||
33 | \membersection{wxFileInputStream::\destruct{wxFileInputStream}} | |
4dba84be JS |
34 | |
35 | \func{}{\destruct{wxFileInputStream}}{\void} | |
e2cad352 GL |
36 | |
37 | Destructor. | |
38 | ||
39 | \membersection{wxFileInputStream::Ok} | |
4dba84be | 40 | |
e2cad352 GL |
41 | \constfunc{bool}{Ok}{\void} |
42 | ||
43 | Returns TRUE if the stream is initialized and ready. | |
44 | ||
45 | % ----------------------------------------------------------------------------- | |
46 | % wxFileOutputStream | |
47 | % ----------------------------------------------------------------------------- | |
48 | \section{\class{wxFileOutputStream}}\label{wxfileoutputstream} | |
49 | ||
50 | \wxheading{Derived from} | |
51 | ||
52 | \helpref{wxOutputStream}{wxoutputstream} | |
53 | ||
54 | \wxheading{See also} | |
55 | ||
56 | \helpref{wxStreamBuffer}{wxstreamBuffer} | |
57 | ||
58 | % ---------- | |
59 | % Members | |
60 | % ---------- | |
61 | \latexignore{\rtfignore{\wxheading{Members}}} | |
62 | ||
63 | \membersection{wxFileOutputStream::wxFileOutputStream} | |
64 | ||
4dba84be | 65 | \func{}{wxFileOutputStream}{\param{const wxString\&}{ ofileName}} |
e2cad352 GL |
66 | |
67 | Creates a new file with \it{ofilename} name and initializes the stream in | |
68 | write-only mode. | |
69 | ||
70 | \func{}{wxFileOutputStream}{\param{wxFile&}{ file}} | |
4dba84be | 71 | |
e2cad352 GL |
72 | Initializes a file stream in write-only mode using the file I/O object \it{file}. |
73 | ||
74 | \func{}{wxFileOutputStream}{\param{int}{ fd}} | |
4dba84be | 75 | |
e2cad352 GL |
76 | Initializes a file stream in write-only mode using the file descriptor \it{fd}. |
77 | ||
78 | \membersection{wxFileOutputStream::\destruct{wxFileOutputStream}} | |
4dba84be JS |
79 | |
80 | \func{}{\destruct{wxFileOutputStream}}{\void} | |
e2cad352 GL |
81 | |
82 | Destructor. | |
83 | ||
84 | \membersection{wxFileOutputStream::Ok} | |
4dba84be | 85 | |
e2cad352 GL |
86 | \constfunc{bool}{Ok}{\void} |
87 | ||
88 | Returns TRUE if the stream is initialized and ready. | |
89 | ||
90 | % ----------------------------------------------------------------------------- | |
91 | % wxFileStream | |
92 | % ----------------------------------------------------------------------------- | |
93 | \section{\class{wxFileStream}} | |
94 | ||
95 | \wxheading{Derived from} | |
96 | ||
97 | \helpref{wxFileOutputStream}{wxFileOutputStream}, \helpref{wxFileInputStream}{wxfileinputstream} | |
98 | ||
99 | \wxheading{See also} | |
100 | ||
101 | \helpref{wxStreamBuffer}{wxstreamBuffer} | |
102 | ||
103 | \latexignore{\rtfignore{\wxheading{Members}}} | |
104 | ||
105 | \membersection{wxFileStream::wxFileStream} | |
106 | ||
4dba84be | 107 | \func{}{wxFileStream}{\param{const wxString\&}{ iofileName}} |
e2cad352 | 108 | |
4dba84be | 109 | Initializes a new file stream in read-write mode using the specified |
e2cad352 GL |
110 | \it{iofilename} name. |
111 |