summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/Logger_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/Logger_i.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/Logger_i.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/Logger_i.h b/TAO/orbsvcs/orbsvcs/Log/Logger_i.h
deleted file mode 100644
index 07aa92d280f..00000000000
--- a/TAO/orbsvcs/orbsvcs/Log/Logger_i.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/* -*- C++ -*- */
-
-// ============================================================================
-//
-// $Id$
-//
-// = LIBRARY
-// TAO services
-//
-// = FILENAME
-// Logger_i.h
-//
-// = AUTHOR
-// Marina Spivak <marina@cs.wustl.edu>,
-// Sergio Flores-Gaitan <sergio@cs.wustl.edu>, and
-// Matthew Braun <mjb2@cec.wustl.edu>
-// ============================================================================
-
-#if !defined (TAO_ORBSVCS_LOGGER_I_H)
-#define TAO_ORBSVCS_LOGGER_I_H
-
-#include "orbsvcs/LoggerS.h"
-
-class TAO_ORBSVCS_Export Logger_Factory_i : public virtual POA_Logger_Factory
-{
- // = TITLE
- // Create a <Logger> of type <name>.
-public:
- Logger_Factory_i (void);
- // constructor.
-
- virtual Logger_ptr make_logger (const char *name,
- CORBA::Environment &_env);
- // This function creates and returns a logger with the given name.
-};
-
-class Logger_i : public virtual POA_Logger
-{
- // = TITLE
- // Used to log messages to a logging server.
-public:
- Logger_i (const char* name);
- // constructor
-
- virtual ~Logger_i (void);
- // destructor
-
- virtual void log (const Logger::Log_Record &log_rec,
- CORBA::Environment &_env);
-
-private:
- ACE_Log_Priority priority_conversion (Logger::Log_Priority priority);
- // This converts from the IDL defined <Log_Priority> enumerated type
- // to the <ACE_Log_Priority> enumerated type.
-
- char *name_;
- // Logger identification.
-};
-
-#endif /* TAO_ORBSVCS_LOGGER_I_H */