summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h')
-rw-r--r--TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h b/TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h
new file mode 100644
index 00000000000..3be035a6eee
--- /dev/null
+++ b/TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo_i.h
@@ -0,0 +1,47 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Echo_i.h
+ *
+ * This class implements the Echo IDL interface.
+ *
+ */
+//=============================================================================
+
+
+#ifndef ECHO_I_H
+#define ECHO_I_H
+
+#include "EchoS.h"
+
+/**
+ * @class Echo_i
+ *
+ * @brief Echo Object Implementation
+ *
+ */
+class Echo_i : public POA_Echo
+{
+public:
+ /// Constructor.
+ Echo_i (CORBA::ORB_ptr o);
+
+ /// Destructor.
+ ~Echo_i () override = default;
+
+ /// Return the result sequences to the cllient.
+ Echo::List *return_list () override;
+ Echo::WList *return_wlist () override;
+
+ /// Shutdown the server.
+ void shutdown () override;
+
+private:
+ /// ORB pointer.
+ CORBA::ORB_var orb_;
+
+ void operator= (const Echo_i&) = delete;
+};
+
+#endif /* ECHO_I_H */