summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
new file mode 100644
index 00000000000..7c79d249655
--- /dev/null
+++ b/TAO/tests/Portable_Interceptors/AMI/Echo_Handler.cpp
@@ -0,0 +1,45 @@
+/**
+ * @file Echo_Handler.cpp
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ */
+#include "Echo_Handler.h"
+
+
+ACE_RCSID (AMI,
+ Echo_Handler,
+ "$Id$")
+
+
+Echo_Handler::Echo_Handler(void)
+{
+}
+
+void
+Echo_Handler::echo_operation (char const *
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC((CORBA::SystemException))
+{
+}
+
+void
+Echo_Handler::echo_operation_excep (Test::AMI_EchoExceptionHolder *
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC((CORBA::SystemException))
+{
+}
+
+void
+Echo_Handler::shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC((CORBA::SystemException))
+{
+}
+
+void
+Echo_Handler::shutdown_excep (Test::AMI_EchoExceptionHolder *
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC((CORBA::SystemException))
+{
+}