modify signature of new wxStreamBuffer ctors to avoid conflicts with the existing ones (closes #10144)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-03-23 10:59:40 +00:00
parent 78f2eafcb6
commit 36f062d3da
3 changed files with 15 additions and 5 deletions

View File

@@ -172,8 +172,13 @@ public:
and calling SetBufferIO() but is more convenient.
@since 2.9.0
@param bufsize
The size of buffer in bytes.
@param stream
The associated input stream, the buffer will be used in read mode.
*/
wxStreamBuffer(wxInputStream& stream, size_t bufsize);
wxStreamBuffer(size_t bufsize, wxInputStream& stream);
/**
Constructor for an output buffer of the specified size.
@@ -182,8 +187,13 @@ public:
and calling SetBufferIO() but is more convenient.
@since 2.9.0
@param bufsize
The size of buffer in bytes.
@param stream
The associated output stream, the buffer will be used in write mode.
*/
wxStreamBuffer(wxOutputStream& stream, size_t bufsize);
wxStreamBuffer(size_t bufsize, wxOutputStream& stream);
/**
Constructor; creates a new empty stream buffer which won't flush any data