aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llstreamtools.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:02 -0500
committerJacek Antonelli2008-08-15 23:45:02 -0500
commitd644fc64407dcd14ffcee6a0e9fbe28ee3a4e9bd (patch)
tree7ed0c2c27d717801238a2e6b5749cd5bf88c3059 /linden/indra/llcommon/llstreamtools.h
parentSecond Life viewer sources 1.17.3.0 (diff)
downloadmeta-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.h2
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
63bool get_word(std::string& output_string, std::istream& input_stream); 64bool get_word(std::string& output_string, std::istream& input_stream);
64bool get_line(std::string& output_string, std::istream& input_stream); 65bool 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
68bool get_word(std::string& output_string, std::istream& input_stream, int n); 70bool get_word(std::string& output_string, std::istream& input_stream, int n);
69bool get_line(std::string& output_string, std::istream& input_stream, int n); 71bool get_line(std::string& output_string, std::istream& input_stream, int n);
70 72