X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/23324ae1c7938ba904770fc456d3c07764b9c5e9..7c0d297a1f761de31d3a4ac924fa2080b5bbaf41:/interface/sckstrm.h diff --git a/interface/sckstrm.h b/interface/sckstrm.h index a104810a08..a29d0ef6f8 100644 --- a/interface/sckstrm.h +++ b/interface/sckstrm.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: sckstrm.h -// Purpose: documentation for wxSocketOutputStream class +// Purpose: interface of wxSocketOutputStream // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -9,16 +9,15 @@ /** @class wxSocketOutputStream @wxheader{sckstrm.h} - + This class implements an output stream which writes data from a connected socket. Note that this stream is purely sequential and it does not support seeking. - + @library{wxnet} @category{streams} - - @seealso - wxSocketBase + + @see wxSocketBase */ class wxSocketOutputStream : public wxOutputStream { @@ -31,19 +30,19 @@ public: }; + /** @class wxSocketInputStream @wxheader{sckstrm.h} - + This class implements an input stream which reads data from a connected socket. Note that this stream is purely sequential and it does not support seeking. - + @library{wxnet} @category{streams} - - @seealso - wxSocketBase + + @see wxSocketBase */ class wxSocketInputStream : public wxInputStream { @@ -54,3 +53,4 @@ public: */ wxSocketInputStream(wxSocketBase& s); }; +