diff options
Diffstat (limited to 'linden/indra/llcommon/llstreamtools.h')
-rw-r--r-- | linden/indra/llcommon/llstreamtools.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llstreamtools.h b/linden/indra/llcommon/llstreamtools.h index c339dde..d64bd57 100644 --- a/linden/indra/llcommon/llstreamtools.h +++ b/linden/indra/llcommon/llstreamtools.h | |||
@@ -60,11 +60,13 @@ bool skip_to_end_of_next_keyword(const char* keyword, std::istream& input_stream | |||
60 | //bool skip_to_start_of_next_keyword(const char* keyword, std::istream& input_stream); | 60 | //bool skip_to_start_of_next_keyword(const char* keyword, std::istream& input_stream); |
61 | 61 | ||
62 | // characters are pulled out of input_stream and appended to output_string | 62 | // characters are pulled out of input_stream and appended to output_string |
63 | // returns result of input_stream.good() after characters are pulled | ||
63 | bool get_word(std::string& output_string, std::istream& input_stream); | 64 | bool get_word(std::string& output_string, std::istream& input_stream); |
64 | bool get_line(std::string& output_string, std::istream& input_stream); | 65 | bool get_line(std::string& output_string, std::istream& input_stream); |
65 | 66 | ||
66 | // characters are pulled out of input_stream (up to a max of 'n') | 67 | // characters are pulled out of input_stream (up to a max of 'n') |
67 | // and appended to output_string | 68 | // and appended to output_string |
69 | // returns result of input_stream.good() after characters are pulled | ||
68 | bool get_word(std::string& output_string, std::istream& input_stream, int n); | 70 | bool get_word(std::string& output_string, std::istream& input_stream, int n); |
69 | bool get_line(std::string& output_string, std::istream& input_stream, int n); | 71 | bool get_line(std::string& output_string, std::istream& input_stream, int n); |
70 | 72 | ||