summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Logger/Logger_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Logger/Logger_Service.h')
-rw-r--r--CIAO/ciao/Logger/Logger_Service.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/CIAO/ciao/Logger/Logger_Service.h b/CIAO/ciao/Logger/Logger_Service.h
deleted file mode 100644
index 10d64c32795..00000000000
--- a/CIAO/ciao/Logger/Logger_Service.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef CIAO_LOGGER_SERVICE_H_
-#define CIAO_LOGGER_SERVICE_H_
-
-#include "CIAO_Logger_Export.h"
-#include "ace/Service_Object.h"
-
-namespace CIAO
- {
- class CIAO_Logger_Export Logger_Service : public ACE_Service_Object
- {
- public:
- Logger_Service (void);
- virtual int init (int argc, ACE_TCHAR * argv[]);
-
- static int Initializer (void);
- private:
- void parse_args (int argc, ACE_TCHAR **argv);
-
- ACE_TString filename_;
- ACE_TString backend_;
- bool trace_;
- };
- }
-
-static int TAO_Requires_CIAO_Logger_Service_Initializer =
- CIAO::Logger_Service::Initializer ();
-
-typedef CIAO::Logger_Service CIAO_LOGGER_SERVICE;
-
-ACE_STATIC_SVC_DECLARE (CIAO_LOGGER_SERVICE)
-ACE_FACTORY_DECLARE (CIAO_Logger, CIAO_LOGGER_SERVICE)
-
-#endif /*LOGGER_SERVICE_H_*/