summaryrefslogtreecommitdiff
path: root/TAO/tests/IPV6/Hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IPV6/Hello.cpp')
-rw-r--r--TAO/tests/IPV6/Hello.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tests/IPV6/Hello.cpp b/TAO/tests/IPV6/Hello.cpp
new file mode 100644
index 00000000000..df5dc90d3d9
--- /dev/null
+++ b/TAO/tests/IPV6/Hello.cpp
@@ -0,0 +1,23 @@
+//
+// $Id$
+//
+#include "Hello.h"
+
+ACE_RCSID(Hello, Hello, "$Id$")
+
+Hello::Hello (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+char *
+Hello::get_string (void)
+{
+ return CORBA::string_dup ("Hello there!");
+}
+
+void
+Hello::shutdown (void)
+{
+ this->orb_->shutdown (0);
+}