diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-03-26 13:06:39 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-03-26 13:06:39 +0800 |
commit | 9093525b25932830ba713b334d5f8785d36a1341 (patch) | |
tree | 52b4a176a071c4206e1c0e9438b6595469ef1e3b /cpp/src/FreezeScript/DumpDescriptors.h | |
parent | bug 2873 - IceStorm::Service -> IceStormInternal::Service. (diff) | |
download | ice-9093525b25932830ba713b334d5f8785d36a1341.tar.bz2 ice-9093525b25932830ba713b334d5f8785d36a1341.tar.xz ice-9093525b25932830ba713b334d5f8785d36a1341.zip |
bug 2810 - dumpdb output goes to stderr.
Diffstat (limited to 'cpp/src/FreezeScript/DumpDescriptors.h')
-rw-r--r-- | cpp/src/FreezeScript/DumpDescriptors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/DumpDescriptors.h b/cpp/src/FreezeScript/DumpDescriptors.h index f46add3c604..f748da0bc3d 100644 --- a/cpp/src/FreezeScript/DumpDescriptors.h +++ b/cpp/src/FreezeScript/DumpDescriptors.h @@ -156,7 +156,7 @@ class EchoDescriptor : public Descriptor public: EchoDescriptor(const DescriptorPtr&, int, const DataFactoryPtr&, const ErrorReporterPtr&, - const IceXML::Attributes&); + const IceXML::Attributes&, std::ostream&); virtual void addChild(const DescriptorPtr&); virtual void validate(); @@ -164,6 +164,7 @@ public: private: + std::ostream& _os; std::string _message; NodePtr _value; std::string _valueStr; |