summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/LoggerI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/LoggerI.h')
-rw-r--r--cppe/src/IceE/LoggerI.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/cppe/src/IceE/LoggerI.h b/cppe/src/IceE/LoggerI.h
deleted file mode 100644
index 77a7adc5aa4..00000000000
--- a/cppe/src/IceE/LoggerI.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICEE_LOGGER_I_H
-#define ICEE_LOGGER_I_H
-
-#include <IceE/Logger.h>
-#include <IceE/Mutex.h>
-
-namespace Ice
-{
-
-class LoggerI : public Logger
-{
-public:
-
- LoggerI(const std::string&);
-
- virtual void print(const std::string&);
- virtual void trace(const std::string&, const std::string&);
- virtual void warning(const std::string&);
- virtual void error(const std::string&);
-
-private:
-
- std::string _prefix;
-};
-
-}
-
-#endif