X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72a7c55982140a7e296346e92f66a21d3f741537..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/stdstream.h?ds=sidebyside diff --git a/interface/wx/stdstream.h b/interface/wx/stdstream.h index 2fe3a5eeef..a010a4baca 100644 --- a/interface/wx/stdstream.h +++ b/interface/wx/stdstream.h @@ -3,7 +3,6 @@ // Purpose: interface of wxStdInputStream, wxStdInputStreamBuffer, // wxStdOutputStream, wxStdOutputStreamBuffer // Author: Jonathan Liu -// RCS-ID: $Id$ // Copyright: (c) 2009 Jonathan Liu // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -60,7 +59,7 @@ public: /** @class wxStdInputStream - wxStdInputStream is a std::istream derived stream buffer which reads from + wxStdInputStream is a std::istream derived stream which reads from a wxInputStream. Example: @@ -69,7 +68,7 @@ public: wxStdInputStream in(file); std::vector words; - // read words from stdin + // read words from words.txt std::copy(std::istream_iterator(in), std::istream_iterator(), std::back_inserter(words));