summaryrefslogtreecommitdiff
path: root/CIAO/tests/Bug_3834_Regression/CompA_exec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/Bug_3834_Regression/CompA_exec.cpp')
-rw-r--r--CIAO/tests/Bug_3834_Regression/CompA_exec.cpp135
1 files changed, 0 insertions, 135 deletions
diff --git a/CIAO/tests/Bug_3834_Regression/CompA_exec.cpp b/CIAO/tests/Bug_3834_Regression/CompA_exec.cpp
deleted file mode 100644
index 381c29ca803..00000000000
--- a/CIAO/tests/Bug_3834_Regression/CompA_exec.cpp
+++ /dev/null
@@ -1,135 +0,0 @@
-// -*- C++ -*-
-/**
- * Code generated by the The ACE ORB (TAO) IDL Compiler v1.7.6
- * TAO and the TAO IDL Compiler have been developed by:
- * Center for Distributed Object Computing
- * Washington University
- * St. Louis, MO
- * USA
- * http://www.cs.wustl.edu/~schmidt/doc-center.html
- * and
- * Distributed Object Computing Laboratory
- * University of California at Irvine
- * Irvine, CA
- * USA
- * and
- * Institute for Software Integrated Systems
- * Vanderbilt University
- * Nashville, TN
- * USA
- * http://www.isis.vanderbilt.edu/
- *
- * Information about TAO is available at:
- * http://www.dre.vanderbilt.edu/~schmidt/TAO.html
- **/
-
-// TAO_IDL - Generated from
-// be/be_codegen.cpp:1273
-
-#include "CompA_exec.h"
-
-namespace CIAO_CompA_Impl
-{
- //============================================================
- // Facet Executor Implementation Class: Moo_exec_i
- //============================================================
-
- Moo_exec_i::Moo_exec_i (void)
- {
- }
-
- Moo_exec_i::~Moo_exec_i (void)
- {
- }
-
- // Operations from ::Moo
-
- void
- Moo_exec_i::do_something (void)
- {
- /* Your code here. */
- ACE_DEBUG ((LM_DEBUG, "Moo_exec_i::do_something\n"));
- }
-
- //============================================================
- // Component Executor Implementation Class: CompA_exec_i
- //============================================================
-
- CompA_exec_i::CompA_exec_i (void)
- {
- }
-
- CompA_exec_i::~CompA_exec_i (void)
- {
- }
-
- // Supported operations and attributes.
-
- // Component attributes and port operations.
-
- ::CCM_Moo_ptr
- CompA_exec_i::get_my_moo (void)
- {
- /* Your code here. */
- return new Moo_exec_i;
- }
-
- // Operations from Components::SessionComponent.
-
- void
- CompA_exec_i::set_session_context (
- ::Components::SessionContext_ptr ctx)
- {
- ACE_DEBUG ((LM_DEBUG, "CompA_exec_i::set_session_context\n"));
-
- this->context_ =
- ::CCM_CompA_Context::_narrow (ctx);
-
- if ( ::CORBA::is_nil (this->context_.in ()))
- {
- throw ::CORBA::INTERNAL ();
- }
- }
-
- void
- CompA_exec_i::configuration_complete (void)
- {
- /* Your code here. */
- ACE_DEBUG ((LM_DEBUG, "CompA_exec_i::configuration_complete\n"));
- }
-
- void
- CompA_exec_i::ccm_activate (void)
- {
- /* Your code here. */
- ACE_DEBUG ((LM_DEBUG, "CompA_exec_i::ccm_activate\n"));
- }
-
- void
- CompA_exec_i::ccm_passivate (void)
- {
- /* Your code here. */
- ACE_DEBUG ((LM_DEBUG, "CompA_exec_i::ccm_passivate\n"));
- }
-
- void
- CompA_exec_i::ccm_remove (void)
- {
- /* Your code here. */
- ACE_DEBUG ((LM_DEBUG, "CompA_exec_i::ccm_remove\n"));
- }
-
- extern "C" COMPA_EXEC_Export ::Components::EnterpriseComponent_ptr
- create_CompA_Impl (void)
- {
- ::Components::EnterpriseComponent_ptr retval =
- ::Components::EnterpriseComponent::_nil ();
-
- ACE_NEW_NORETURN (
- retval,
- CompA_exec_i);
-
- return retval;
- }
-}
-