summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/Hello/hello_executors.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/handcrafted/Hello/hello_executors.h')
-rw-r--r--TAO/CIAO/examples/handcrafted/Hello/hello_executors.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/TAO/CIAO/examples/handcrafted/Hello/hello_executors.h b/TAO/CIAO/examples/handcrafted/Hello/hello_executors.h
deleted file mode 100644
index 322a89dff48..00000000000
--- a/TAO/CIAO/examples/handcrafted/Hello/hello_executors.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// $Id$
-
-// This file contains executor implementations.
-
-#if !defined (HELLO_EXECUTORS_H)
-#define HELLO_EXECUTORS_H
-
-#include "helloEC.h"
-#include "hello_executors_export.h"
-
-class HelloWorld_Impl :
- public virtual CCM_HelloWorld,
- public virtual TAO_Local_RefCounted_Object
-{
-public:
- /// Default ctor.
- HelloWorld_Impl ();
-
- /// Default dtor.
- ~HelloWorld_Impl ();
-
- virtual char *sayhello (const char *username
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
-};
-
-class HelloHome_Impl :
- public virtual CCM_HelloHome,
- public virtual TAO_Local_RefCounted_Object
-{
-public:
- /// Default ctor.
- HelloHome_Impl ();
-
- /// Default dtor.
- ~HelloHome_Impl ();
-
- virtual ::Components::EnterpriseComponent_ptr
- create (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
- ACE_THROW_SPEC ((CORBA::SystemException,
- Components::CreateFailure));
-};
-
-// We still need to figure out a way to clean up the object created by
-// the factory correctly. Like we did in ACE_FACTORY macro, with a
-// Gobbler function.
-
-extern "C" HELLO_EXECUTOR_Export ::Components::HomeExecutorBase_ptr
-createHelloHome_Impl (void);
-
-#endif /* HELLO_EXECUTORS_H */