diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2012-01-22 10:58:16 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2012-01-22 10:58:16 -0500 |
commit | aa1bbe3277842a9a6e7db5227b35f1fbea50b7a6 (patch) | |
tree | eb7cd1bf8a97963e177027e865458c87104425a9 /indra/llcommon/llprocess.h | |
parent | b9a03b95aafb07eb32a8f99a671f2216acce96d4 (diff) |
Make LLProcess::Params streamable; use that in LLExternalEditor.
Diffstat (limited to 'indra/llcommon/llprocess.h')
-rw-r--r-- | indra/llcommon/llprocess.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcommon/llprocess.h b/indra/llcommon/llprocess.h index 9ea129baf2..7dbdf23679 100644 --- a/indra/llcommon/llprocess.h +++ b/indra/llcommon/llprocess.h @@ -31,6 +31,7 @@ #include "llsdparam.h" #include <boost/shared_ptr.hpp> #include <boost/noncopyable.hpp> +#include <iosfwd> // std::ostream #if LL_WINDOWS #define WIN32_LEAN_AND_MEAN @@ -124,4 +125,7 @@ private: bool mAutokill; }; +/// for logging +LL_COMMON_API std::ostream& operator<<(std::ostream&, const LLProcess::Params&); + #endif // LL_LLPROCESS_H |