summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Logger/logger_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Logger/logger_i.h')
-rw-r--r--TAO/orbsvcs/tests/Logger/logger_i.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/TAO/orbsvcs/tests/Logger/logger_i.h b/TAO/orbsvcs/tests/Logger/logger_i.h
deleted file mode 100644
index 18bb27d167b..00000000000
--- a/TAO/orbsvcs/tests/Logger/logger_i.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- C++ -*- */
-
-#if !defined (LOGGER_I_H)
-#define LOGGER_I_H
-
-
-#include "loggerS.h"
-#include <iostream.h>
-#include <string.h>
-
-
-class Logger_Factory_i : public virtual POA_Logger_Factory
-{
-public:
- Logger_Factory_i (const char *key);
- // constructor
-
- virtual Logger_ptr make_logger (const char * name,
- CORBA::Environment &IT_env);
- // this function creates and returns a logger with the given name
-};
-
-
-class Logger_i : public virtual POA_Logger
-{
-public:
-
- // constructor
- Logger_i (const char * name);
-
- // destructor
- virtual ~Logger_i (void);
-
- virtual void log (const char *message,
- CORBA::Environment &IT_env);
-
-private:
- // logger identification
- char *name_;
-};
-
-#endif /* LOGGER_I_H */