summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1269_Regression/Echo.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1269_Regression/Echo.h')
-rw-r--r--trunk/TAO/tests/Bug_1269_Regression/Echo.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1269_Regression/Echo.h b/trunk/TAO/tests/Bug_1269_Regression/Echo.h
new file mode 100644
index 00000000000..4f1f2938ca6
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1269_Regression/Echo.h
@@ -0,0 +1,29 @@
+#ifndef Echo__h_
+#define Echo__h_
+/**
+ * @file Echo.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#include "TestS.h"
+
+class Echo : public POA_Test::Echo
+{
+public:
+ Echo(CORBA::ORB_ptr orb,
+ int abort_counter);
+
+ virtual void echo_payload (Test::Payload const & data
+ ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC((CORBA::SystemException));
+
+private:
+ CORBA::ORB_var orb_;
+
+ int abort_counter_;
+};
+
+#endif /* Echo__h_ */