diff options
author | Jacek Antonelli | 2008-08-15 23:45:02 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:02 -0500 |
commit | d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd (patch) | |
tree | 7ed0c2c27d717801238a2e6b5749cd5bf88c3059 /linden/indra/llcommon/llstreamtools.h | |
parent | Second Life viewer sources 1.17.3.0 (diff) | |
download | meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.zip meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.gz meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.bz2 meta-impy-d644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd.tar.xz |
Second Life viewer sources 1.18.0.6
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 | ||