summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h')
-rw-r--r--CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h89
1 files changed, 0 insertions, 89 deletions
diff --git a/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h b/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h
deleted file mode 100644
index 31e10b66743..00000000000
--- a/CIAO/performance-tests/Benchmark/RoundTripClient/RoundTripClient_exec.h
+++ /dev/null
@@ -1,89 +0,0 @@
-//============================================================
-/**
- * @file RoundTripClient_exec.h
- *
- * Header file for the Executor implementation.
- *
- * @author Diego <dsevilla@um.es>
- * @author Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
- */
-//============================================================
-
-#ifndef BENCHMARK_ROUNDTRIPCLIENT_EXEC_H
-#define BENCHMARK_ROUNDTRIPCLIENT_EXEC_H
-
-#include "RoundTripClientEIC.h"
-#include "tao/LocalObject.h"
-
-
-namespace MyImpl
-{
-
- /**
- * @class RoundTripClient_exec_i
- *
- * RoundTripClient executor implementation class.
- */
-
- class ROUNDTRIPCLIENT_EXEC_Export RoundTripClient_exec_i :
- public virtual Benchmark::RoundTripClient_Exec,
- public virtual ::CORBA::LocalObject
- {
-
- public:
- /// Default constructor.
- RoundTripClient_exec_i ();
-
- /// Default destructor.
- ~RoundTripClient_exec_i ();
-
- // Operations from Components::SessionComponent
- virtual void set_session_context (Components::SessionContext_ptr ctx);
-
- virtual void configuration_complete ();
-
- virtual void ccm_activate ();
-
- virtual void ccm_passivate ();
-
- virtual void ccm_remove ();
-
- virtual ::Benchmark::CCM_Controller_ptr get_controller_ ();
-
- virtual void start ();
-
-
- protected:
- /// Copmponent specific context
- Benchmark::CCM_RoundTripClient_Context_var context_;
-
- };
-
- /**
- * @class RoundTripClientHome_exec_i
- *
- * RoundTripClient home executor implementation class.
- */
- class ROUNDTRIPCLIENT_EXEC_Export RoundTripClientHome_exec_i :
- public virtual Benchmark::CCM_RoundTripClientHome,
- public virtual ::CORBA::LocalObject
- {
- public:
- /// Default ctor.
- RoundTripClientHome_exec_i ();
-
- /// Default dtor.
- ~RoundTripClientHome_exec_i ();
-
- // Implicit home operations.
-
- virtual ::Components::EnterpriseComponent_ptr
- create ();
- };
-
-}
-
-extern "C" ROUNDTRIPCLIENT_EXEC_Export ::Components::HomeExecutorBase_ptr
-createRoundTripClientHome_Impl (void);
-
-#endif /* CIAO_ROUNDTRIPCLIENTGEN_EXEC_H */