summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1020_Regression/Echo.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1020_Regression/Echo.h')
-rw-r--r--TAO/tests/Bug_1020_Regression/Echo.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1020_Regression/Echo.h b/TAO/tests/Bug_1020_Regression/Echo.h
new file mode 100644
index 00000000000..3674cb8474a
--- /dev/null
+++ b/TAO/tests/Bug_1020_Regression/Echo.h
@@ -0,0 +1,24 @@
+#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);
+
+ virtual Test::Payload * echo_payload (Test::Payload const & data);
+
+private:
+ CORBA::ORB_var orb_;
+};
+
+#endif /* Echo__h_ */