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.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/Logger_i.h b/TAO/orbsvcs/orbsvcs/Log/Logger_i.h
deleted file mode 100644
index b5938eaa174..00000000000
--- a/TAO/orbsvcs/orbsvcs/Log/Logger_i.h
+++ /dev/null
@@ -1,52 +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>
-//
-// ============================================================================
-
-#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
-{
-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
-{
-public:
- Logger_i (const char* name);
- // constructor
-
- virtual ~Logger_i (void);
- // destructor
-
- virtual void log (const char *message,
- CORBA::Environment &_env);
-
-private:
- char *name_;
- // logger identification
-};
-
-#endif /* TAO_ORBSVCS_LOGGER_I_H */