summaryrefslogtreecommitdiff
path: root/ciao/ComponentServer/CIAO_ComponentServer_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'ciao/ComponentServer/CIAO_ComponentServer_Task.h')
-rw-r--r--ciao/ComponentServer/CIAO_ComponentServer_Task.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/ciao/ComponentServer/CIAO_ComponentServer_Task.h b/ciao/ComponentServer/CIAO_ComponentServer_Task.h
deleted file mode 100644
index ba3f00d5c31..00000000000
--- a/ciao/ComponentServer/CIAO_ComponentServer_Task.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// $Id$
-/**
- * @file CIAO_ComponentServer_Task.h
- * @author William R. Otte
- *
- * Defines interface for the bootstrap element of the CIAO Component
- * Server.
- */
-
-#ifndef CIAO_COMPONENTSERVER_TASK_H_
-#define CIAO_COMPONENTSERVER_TASK_H_
-
-#include "ace/String_Base.h"
-#include "ace/Task.h"
-#include "tao/ORB.h"
-
-namespace CIAO
-{
- namespace Deployment
- {
- class ComponentServer_Task : ACE_Task_Base
- {
- public:
- ComponentServer_Task (int argc, ACE_TCHAR **argv);
-
- int svc (void);
-
- struct Error
- {
- Error (const ACE_CString &err);
- ACE_CString err_;
- };
-
- void run (void);
-
- private:
- void parse_args (int argc, ACE_TCHAR **argv);
-
- void usage (void);
-
- CORBA::ORB_var orb_;
-
- ACE_CString uuid_;
- ACE_TString callback_ior_str_;
- ACE_TString output_file_;
- };
- }
-}
-
-#endif