diff options
Diffstat (limited to 'cpp/src/IceSSL/ConfigParserErrorReporter.h')
-rw-r--r-- | cpp/src/IceSSL/ConfigParserErrorReporter.h | 126 |
1 files changed, 63 insertions, 63 deletions
diff --git a/cpp/src/IceSSL/ConfigParserErrorReporter.h b/cpp/src/IceSSL/ConfigParserErrorReporter.h index 2b94b4c1d74..192917fd2d8 100644 --- a/cpp/src/IceSSL/ConfigParserErrorReporter.h +++ b/cpp/src/IceSSL/ConfigParserErrorReporter.h @@ -1,63 +1,63 @@ -// ********************************************************************** -// -// Copyright (c) 2001 -// MutableRealms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#ifndef ICE_SSL_CONFIG_ERROR_REPORTER_H -#define ICE_SSL_CONFIG_ERROR_REPORTER_H - -#include <Ice/LoggerF.h> -#include <IceSSL/TraceLevelsF.h> -#include <util/XercesDefs.hpp> -#include <dom/DOMString.hpp> -#include <sax/ErrorHandler.hpp> - -namespace IceSSL -{ - -class ConfigParserErrorReporter : public ErrorHandler, public IceUtil::Shared -{ -public: - - ConfigParserErrorReporter(const IceSSL::TraceLevelsPtr&, const Ice::LoggerPtr&); - ~ConfigParserErrorReporter(); - - // Implementation of the error handler interface. - void warning(const SAXParseException& toCatch); - void error(const SAXParseException& toCatch); - void fatalError(const SAXParseException& toCatch); - void resetErrors(); - - bool getSawErrors() const; - std::string getErrors() const; - -private: - - IceSSL::TraceLevelsPtr _traceLevels; - Ice::LoggerPtr _logger; - - // Any errors that are encountered will be output to this stream. - std::ostringstream _errors; - int _errorCount; -}; - -typedef IceInternal::Handle<ConfigParserErrorReporter> ConfigParserErrorReporterPtr; - -std::ostream& operator << (std::ostream& target, const DOMString& s); - -} - -namespace IceInternal -{ - -void incRef(::IceSSL::ConfigParserErrorReporter*); -void decRef(::IceSSL::ConfigParserErrorReporter*); - -} - -#endif +// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_SSL_CONFIG_ERROR_REPORTER_H
+#define ICE_SSL_CONFIG_ERROR_REPORTER_H
+
+#include <Ice/LoggerF.h>
+#include <IceSSL/TraceLevelsF.h>
+#include <util/XercesDefs.hpp>
+#include <dom/DOMString.hpp>
+#include <sax/ErrorHandler.hpp>
+
+namespace IceSSL
+{
+
+class ConfigParserErrorReporter : public ErrorHandler, public IceUtil::Shared
+{
+public:
+
+ ConfigParserErrorReporter(const IceSSL::TraceLevelsPtr&, const Ice::LoggerPtr&);
+ ~ConfigParserErrorReporter();
+
+ // Implementation of the error handler interface.
+ void warning(const SAXParseException& toCatch);
+ void error(const SAXParseException& toCatch);
+ void fatalError(const SAXParseException& toCatch);
+ void resetErrors();
+
+ bool getSawErrors() const;
+ std::string getErrors() const;
+
+private:
+
+ IceSSL::TraceLevelsPtr _traceLevels;
+ Ice::LoggerPtr _logger;
+
+ // Any errors that are encountered will be output to this stream.
+ std::ostringstream _errors;
+ int _errorCount;
+};
+
+typedef IceInternal::Handle<ConfigParserErrorReporter> ConfigParserErrorReporterPtr;
+
+std::ostream& operator << (std::ostream& target, const DOMString& s);
+
+}
+
+namespace IceInternal
+{
+
+void incRef(::IceSSL::ConfigParserErrorReporter*);
+void decRef(::IceSSL::ConfigParserErrorReporter*);
+
+}
+
+#endif
|