summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3479_Regression/Hello.cpp
blob: 9eb011eec14aa7af3e90c57651c2fba238f9167d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "Hello.h"

Hello::Hello (CORBA::ORB_ptr orb)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

void
Hello::get_string (CORBA::String_out string_out)
{
  string_out = CORBA::string_dup ("Hello there!");
}

void
Hello::shutdown (void)
{
  this->orb_->shutdown (0);
}