summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Pluggable/PP_Test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Pluggable/PP_Test_i.h')
-rw-r--r--TAO/performance-tests/Pluggable/PP_Test_i.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/TAO/performance-tests/Pluggable/PP_Test_i.h b/TAO/performance-tests/Pluggable/PP_Test_i.h
deleted file mode 100644
index 7950a0fb248..00000000000
--- a/TAO/performance-tests/Pluggable/PP_Test_i.h
+++ /dev/null
@@ -1,76 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/performance-tests/Pluggable
-//
-// = FILENAME
-// PP_Test_i.h
-//
-// = AUTHOR
-// Jeff Parsons <parsons@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef _PP_TEST_I_H
-#define _PP_TEST_I_H
-
-#include "PP_TestS.h"
-
-class PP_Test_i : public POA_Pluggable_Test
-{
- // = TITLE
- // Illustrates how to integrate a servant with the generated
- // skeleton.
- //
- // = DESCRIPTION
- // Implementation of the example at the servant side.
- // Sends a no-op oneway and twoway request.
-public:
- PP_Test_i (CORBA::ORB_ptr orb);
- // Constructor
-
- ~PP_Test_i (void);
- // Destructor
-
- virtual void send_oneway (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Test a oneway call.
-
- virtual void send_void (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Test a twoway call.
-
- virtual void shutdown (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Shutdown routine.
-
-protected:
- CORBA::ORB_var orb_;
- // Keep a pointer to the ORB so we can shut it down.
-};
-
-class Pluggable_Test_Factory_i: public POA_Pluggable_Test_Factory
-{
- // = TITLE
- // Pluggable_Test_Factory_i
- //
- // = DESCRIPTION
- // Factory object returning the Pluggable_Test objrefs
-public:
- Pluggable_Test_Factory_i (CORBA::ORB_ptr orb);
- // Constructor.
-
- ~Pluggable_Test_Factory_i (void);
- // Destructor.
-
- virtual Pluggable_Test_ptr make_pluggable_test (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Make a Pluggable Test object.
-
-private:
- PP_Test_i my_pluggable_test_;
-};
-
-#endif /* _PP_TEST_I_H */