summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/ami_test_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI/ami_test_i.h')
-rw-r--r--TAO/tests/AMI/ami_test_i.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/TAO/tests/AMI/ami_test_i.h b/TAO/tests/AMI/ami_test_i.h
deleted file mode 100644
index 3c2c6b6908c..00000000000
--- a/TAO/tests/AMI/ami_test_i.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/AMI
-//
-// = FILENAME
-// ami_test_i.h
-//
-// = AUTHOR
-// Michael Kircher <Michael.Kircher@mchp.siemens.de>
-//
-// ============================================================================
-
-#ifndef TAO_AMI_TEST_I_H
-#define TAO_AMI_TEST_I_H
-
-#ifdef TAO_HAS_AMI_EXCEPTIONS
-#include "ami_testS-hand.h"
-#else
-#include "ami_testS.h"
-#endif
-
-class AMI_Test_i : public POA_A::AMI_Test
-{
- // = TITLE
- // AMI Test implementation
- //
- // = DESCRIPTION
- // Implements the AMI_Test interface in test.idl
- //
-public:
- AMI_Test_i (CORBA::ORB_ptr orb);
- // ctor
-
- // The AMI_Test methods.
- CORBA::Long foo (CORBA::Long_out out_l,
- CORBA::Long in_l,
- const char* in_str,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void shutdown (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- CORBA::Long yadda (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- void yadda (CORBA::Long yadda,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
-private:
- CORBA::ORB_var orb_;
-
- CORBA::Long number_;
-
- CORBA::Long yadda_;
-};
-
-
-#endif /* TAO_AMI_TEST_I_H */