summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ConfigParserErrorReporter.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-04-26 02:53:33 +0000
committerMark Spruiell <mes@zeroc.com>2002-04-26 02:53:33 +0000
commit0d715a1edd4484c9b7074c9c3cb283d468a538bc (patch)
tree45934688c11aa189731ae51f07032050affd12ef /cpp/src/IceSSL/ConfigParserErrorReporter.h
parentWin32 fix (diff)
downloadice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.tar.bz2
ice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.tar.xz
ice-0d715a1edd4484c9b7074c9c3cb283d468a538bc.zip
Renaming Ice.Trace.Security to IceSSL.Trace.Security Cleaning up IceSSL
dependencies on Ice core
Diffstat (limited to 'cpp/src/IceSSL/ConfigParserErrorReporter.h')
-rw-r--r--cpp/src/IceSSL/ConfigParserErrorReporter.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/ConfigParserErrorReporter.h b/cpp/src/IceSSL/ConfigParserErrorReporter.h
index 6a54e3d7876..1c80e3f7f49 100644
--- a/cpp/src/IceSSL/ConfigParserErrorReporter.h
+++ b/cpp/src/IceSSL/ConfigParserErrorReporter.h
@@ -11,13 +11,11 @@
#ifndef ICE_SSL_CONFIG_ERROR_REPORTER_H
#define ICE_SSL_CONFIG_ERROR_REPORTER_H
-#include <iostream>
-#include <IceUtil/Shared.h>
#include <util/XercesDefs.hpp>
#include <dom/DOMString.hpp>
#include <sax/ErrorHandler.hpp>
-#include <Ice/TraceLevelsF.h>
#include <Ice/LoggerF.h>
+#include <IceSSL/TraceLevelsF.h>
namespace IceSSL
{
@@ -25,8 +23,8 @@ namespace IceSSL
class ConfigParserErrorReporter : public ErrorHandler, public IceUtil::Shared
{
public:
- ConfigParserErrorReporter(const IceInternal::TraceLevelsPtr&, const Ice::LoggerPtr&);
+ ConfigParserErrorReporter(const IceSSL::TraceLevelsPtr&, const Ice::LoggerPtr&);
~ConfigParserErrorReporter();
// Implementation of the error handler interface.
@@ -39,7 +37,8 @@ public:
std::string getErrors() const;
private:
- IceInternal::TraceLevelsPtr _traceLevels;
+
+ IceSSL::TraceLevelsPtr _traceLevels;
Ice::LoggerPtr _logger;
// Any errors that are encountered will be output to this stream.