diff options
Diffstat (limited to 'Source/kwsys/SystemTools.hxx.in')
-rw-r--r-- | Source/kwsys/SystemTools.hxx.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index c59529f..a0c0d31 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -245,9 +245,11 @@ public: * Read line from file. Make sure to get everything. Due to a buggy stream * library on the HP and another on Mac OSX, we need this very carefully * written version of getline. Returns true if any data were read before the - * end-of-file was reached. + * end-of-file was reached. If the has_newline argument is specified, it will + * be true when the line read had a newline character. */ - static bool GetLineFromStream(kwsys_std::istream& istr, kwsys_std::string& line); + static bool GetLineFromStream(kwsys_std::istream& istr, kwsys_std::string& line, + bool* has_newline=0); protected: // these two functions can be called from ConvertToOutputPath |