summaryrefslogtreecommitdiff
path: root/TAO/tests/Interceptors/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Interceptors/test_i.cpp')
-rw-r--r--TAO/tests/Interceptors/test_i.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/TAO/tests/Interceptors/test_i.cpp b/TAO/tests/Interceptors/test_i.cpp
deleted file mode 100644
index 7de086d3a4b..00000000000
--- a/TAO/tests/Interceptors/test_i.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-// $Id$
-
-#include "test_i.h"
-
-ACE_RCSID(Interceptors, test_i, "$Id$");
-
-Visual_i::Visual_i (CORBA::ORB_ptr orb)
- : orb_ (CORBA::ORB::_duplicate (orb))
-{
-}
- // ctor
-
-void
-Visual_i::normal (CORBA::Long arg,
- CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "Visual::normal called with %d\n", arg));
-}
-
-void
-Visual_i::nothing (CORBA::Environment&)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "Visual::nothing\n"));
-}
-
-void
-Visual_i::user (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException,Test_Interceptors::Silly))
-{
- ACE_DEBUG ((LM_DEBUG, "Visual::user, throwning Silly\n"));
- ACE_THROW (Test_Interceptors::Silly ());
-}
-
-void
-Visual_i::system (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_DEBUG ((LM_DEBUG, "Visual::user, throwning INV_OBJREF\n"));
- ACE_THROW (CORBA::INV_OBJREF ());
-}
-
-void
-Visual_i::shutdown (CORBA::Environment&)
- ACE_THROW_SPEC (())
-{
- this->orb_->shutdown ();
-}